Releases: vintasoftware/django-ai-boost
v0.4.1
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
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
- @hugobessa made their first contribution in #4
Full Changelog: v0.3.1...v0.4.0
v0.3.1
What's Changed
- Updates the
README.mdfile adding a section about how to set up Cursor.
Full Changelog: v0.3.0...v0.3.1
v0.3.0
v0.2.0
What's Changed
- chore: rename project to
django-ai-boostby @raisiqueira in #1
Full Changelog: v0.1.3...v0.2.0
v0.1.3
Changes
- Added a prompt to search for a specific topic on Django documentation.
Full Changelog: v0.1.2...v0.1.3
v0.1.2
Changes
- docs: add missing comment on README.md file
- ci: update
publish.ymlfile including the step to publish the MCP server.
Full Changelog: v0.1.1...v0.1.2
v0.1.1
v0.1.0
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