Skip to content

Releases: vintasoftware/django-ai-boost

v0.1.2

07 Nov 19:17
d1d2c28

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
785ded3

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
f86a87b

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