Skip to content

Releases: vintasoftware/django-ai-boost

v0.4.1

26 Nov 16:53
a58b0e0

Choose a tag to compare

What's Changed

  • docs: Fixes broken link for the 'Available Tools' section by @raisiqueira in #7

Full Changelog: v0.4.0...v0.4.1

v0.4.0

19 Nov 14:25

Choose a tag to compare

What's Changed

  • Update README with GitHub Copilot setup instructions by @hugobessa in #4
  • feat: adds support to define the port and the host to start the server by @raisiqueira in #5

New Contributors

Full Changelog: v0.3.1...v0.4.0

v0.3.1

17 Nov 14:16

Choose a tag to compare

What's Changed

  • Updates the README.md file adding a section about how to set up Cursor.

Full Changelog: v0.3.0...v0.3.1

v0.3.0

17 Nov 13:19

Choose a tag to compare

Features

  • Adds a new MCP tool to operate read-only queries.

Full Changelog: v0.2.0...v0.3.0

v0.2.0

17 Nov 12:53

Choose a tag to compare

What's Changed

Full Changelog: v0.1.3...v0.2.0

v0.1.3

13 Nov 20:06

Choose a tag to compare

Changes

  • Added a prompt to search for a specific topic on Django documentation.

Full Changelog: v0.1.2...v0.1.3

v0.1.2

07 Nov 19:17

Choose a tag to compare

Changes

  • docs: add missing comment on README.md file
  • ci: update publish.yml file including the step to publish the MCP server.

Full Changelog: v0.1.1...v0.1.2

v0.1.1

07 Nov 19:06

Choose a tag to compare

v0.1.1

  • Add GitHub MCP registry config

Full Changelog: v0.1.0...v0.1.1

v0.1.0

07 Nov 18:31

Choose a tag to compare

Initial Release 🎉

Available Tools in this first release

1. application_info

Get Django and Python versions, installed apps, middleware, database engine, and debug mode status.

2. get_setting

Retrieve any Django setting using dot notation (e.g., DATABASES.default.ENGINE).

3. list_models

List all Django models with fields, types, max_length, null/blank status, and relationships.

4. list_urls

Show all URL patterns with names, patterns, and view handlers (including nested includes).

5. database_schema

Get complete database schema including tables, columns, types, indexes, and foreign keys.

6. list_migrations

View all migrations per app with their applied/unapplied status.

7. list_management_commands

List all available manage.py commands with their source apps.

8. get_absolute_url

Get the absolute URL for a specific model instance. Requires the model to have a get_absolute_url() method defined.

Full Changelog: https://github.com/raisiqueira/django-telescope/commits/v0.1.0