Skip to main content

A Model Context Protocol (MCP) server for Django applications, inspired by Laravel Boost

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

Django Telescope

A Model Context Protocol (MCP) server for Django applications, inspired by Laravel Boost. This server exposes Django project information through MCP tools, enabling AI assistants to better understand and interact with Django codebases.

Table of Contents

Features

Project Discovery: List models, URLs, and management commands

  • Database Introspection: View schema, migrations, and relationships
  • Configuration Access: Query Django settings with dot notation
  • Log Reading: Access recent application logs with filtering
  • Read-Only: All tools are safe, read-only operations
  • Fast: Built on FastMCP for efficient async operations

Screenshots

Click to view screenshots

Django Telescope in Action

Django Telescope Example

Django Telescope MCP server providing Django project introspection through AI assistants (Example using OpenCode)

Installation

For End Users

# Using uv (recommended)
uv pip install django-telescope

# Or with pip
pip install django-telescope

For Development

If you want to contribute or run the latest development version:

# Clone the repository
git clone https://github.com/vinta/django-telescope.git
cd django-telescope

# Install uv if you haven't already
# On macOS/Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh

# On Windows:
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

# Install dependencies (creates virtual environment automatically)
uv sync --dev

# Verify installation
uv run django-telescope --help

Usage

Running the Server

The server requires access to your Django project's settings:

# Set the Django settings module
export DJANGO_SETTINGS_MODULE=myproject.settings
django-telescope

# Or specify settings directly
django-telescope --settings myproject.settings

# Run with SSE transport (default is stdio)
django-telescope --settings myproject.settings --transport sse

AI Tools Setup

Claude Desktop

Add to your Claude Desktop configuration:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/claude/claude_desktop_config.json
{
  "mcpServers": {
    "django": {
      "command": "django-telescope",
      "args": ["--settings", "myproject.settings"],
      "env": {
        "DJANGO_SETTINGS_MODULE": "myproject.settings",
        "PYTHONPATH": "/path/to/your/django/project"
      }
    }
  }
}

Note: Make sure to replace /path/to/your/django/project with the actual path to your Django project root directory.

Claude Code (VS Code Extension)

  1. Install the Claude Code extension from VS Code marketplace
  2. Create or edit .mcp.json in your Django project root:
{
  "mcpServers": {
    "django-telescope": {
      "command": "uv",
      "args": ["run", "django-telescope", "--settings", "myproject.settings"],
      "env": {
        "DJANGO_SETTINGS_MODULE": "myproject.settings"
      }
    }
  }
}
  1. Restart VS Code or reload the Claude Code extension
  2. Claude Code will automatically connect to the MCP server when you start a conversation

OpenAI ChatGPT Desktop with MCP

OpenAI ChatGPT Desktop supports MCP servers. Add to your configuration file:

  • macOS: ~/Library/Application Support/OpenAI/ChatGPT/config.json
  • Windows: %APPDATA%\OpenAI\ChatGPT\config.json
{
  "mcpServers": {
    "django": {
      "command": "django-telescope",
      "args": ["--settings", "myproject.settings"],
      "env": {
        "DJANGO_SETTINGS_MODULE": "myproject.settings"
      }
    }
  }
}

Cline (VS Code Extension)

  1. Install the Cline extension from VS Code marketplace
  2. Open Cline settings (Cmd/Ctrl + Shift + P → "Cline: Open Settings")
  3. Add MCP server configuration in the MCP Servers section:
{
  "django": {
    "command": "django-telescope",
    "args": ["--settings", "myproject.settings"],
    "env": {
      "DJANGO_SETTINGS_MODULE": "myproject.settings"
    }
  }
}

Zed Editor

Add to your Zed MCP configuration (~/.config/zed/mcp.json):

{
  "servers": {
    "django": {
      "command": "django-telescope",
      "args": ["--settings", "myproject.settings"],
      "env": {
        "DJANGO_SETTINGS_MODULE": "myproject.settings"
      }
    }
  }
}

Generic MCP Client

For any MCP-compatible client, you can run the server manually:

# Standard I/O transport (default)
django-telescope --settings myproject.settings

# Server-Sent Events transport
django-telescope --settings myproject.settings --transport sse

Available Tools and Prompts

Tools

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.

Arguments:

  • app_label: The Django app label (e.g., "blog")
  • model_name: The model name (e.g., "Post")
  • pk: The primary key of the instance

9. reverse_url

Reverse a named URL pattern to get its actual URL path. Supports both positional args and keyword arguments.

Arguments:

  • url_name: The URL pattern name (e.g., "post_detail", "admin:index")
  • args: Optional list of positional arguments
  • kwargs: Optional dict of keyword arguments

10. read_recent_logs

Read recent log entries with optional filtering by log level (DEBUG, INFO, WARNING, ERROR, CRITICAL).

Prompts

MCP prompts provide reusable message templates to help guide interactions with AI assistants.

1. search_django_docs

Generate a formatted prompt to help search for specific topics in Django documentation.

Arguments:

  • topic: The Django topic or feature to search for (e.g., "models", "queryset", "migrations", "authentication")

Returns: A formatted prompt that includes:

  • The current Django version being used
  • Direct links to the appropriate version of Django documentation
  • Guidance on what information to look for
  • Request for best practices and code examples

Example topics:

  • "models" - Learn about Django models and ORM
  • "queryset filtering" - Query optimization and filtering
  • "migrations" - Database schema management
  • "authentication" - User authentication and permissions
  • "middleware" - Request/response processing
  • "forms" - Form handling and validation

This prompt automatically adapts to your Django version (e.g., 5.2, 4.2) to ensure documentation compatibility.

Example Usage with AI Assistants

Once configured, you can ask your AI assistant questions like:

Using Tools:

  • "What models are in this Django project?"
  • "Show me all URL patterns"
  • "What's the database schema for the users table?"
  • "Are there any unapplied migrations?"
  • "What's the value of the DEBUG setting?"
  • "What's the URL for blog post with ID 5?"
  • "Reverse the 'post_detail' URL pattern with pk=10"
  • "Show me recent error logs"

Using Prompts:

  • "Use the search_django_docs prompt for 'models'" - Get help finding Django model documentation
  • "Search Django docs for 'authentication'" - Learn about Django authentication
  • "Show me Django documentation about 'migrations'" - Migration best practices and guides

Development & Testing

The project includes a comprehensive test suite and a fixture Django project for development:

# Test the MCP server with the fixture project
uv run python test_server.py

# Run the MCP server with the test project
export PYTHONPATH="${PYTHONPATH}:./fixtures/testproject"
uv run django-telescope --settings testproject.settings

# Run linter
uv run ruff check .

# Auto-fix linting issues
uv run ruff check --fix .

# Format code
uv run ruff format .

The fixtures/testproject/ directory contains a complete Django application for testing all MCP tools. See fixtures/README.md for details about the test project structure.

Troubleshooting

"Django is not configured" Error

Make sure you've set the DJANGO_SETTINGS_MODULE environment variable or used the --settings flag:

export DJANGO_SETTINGS_MODULE=myproject.settings
django-telescope

PYTHONPATH Issues

If Django can't find your project modules, add your project directory to PYTHONPATH:

export PYTHONPATH="${PYTHONPATH}:/path/to/your/project"
django-telescope --settings myproject.settings

Or in your MCP client configuration:

{
  "env": {
    "PYTHONPATH": "/path/to/your/project",
    "DJANGO_SETTINGS_MODULE": "myproject.settings"
  }
}

MCP Server Not Connecting

  1. Check that the django-telescope command is accessible in your PATH
  2. Verify your MCP client configuration file syntax is valid JSON
  3. Check the logs in your AI tool (usually in settings or help menu)
  4. Try running the server manually to see any error messages:
    django-telescope --settings myproject.settings
    

Database Connection Issues

Ensure your Django database is properly configured and accessible. The MCP server needs the same database access as your Django application.

Requirements

  • Python 3.12+
  • Django 4.2+
  • FastMCP 2.12.4+

License

MIT License - see LICENSE file for details.

Inspiration

This project is inspired by Laravel Boost, which provides similar MCP functionality for Laravel applications.

Contributing

We welcome contributions from the community! Whether it's bug fixes, new features, documentation improvements, or bug reports, your help is appreciated.

Getting Started

  1. Fork the repository on GitHub
  2. Clone your fork locally:
    git clone https://github.com/YOUR_USERNAME/django-telescope.git
    cd django-telescope
    
  3. Install development dependencies:
    uv sync --dev
    
  4. Create a new branch for your changes:
    git checkout -b feature/your-feature-name
    # or
    git checkout -b fix/your-bug-fix
    

Development Workflow

  1. Make your changes in your feature branch

  2. Follow code style:

    # Check code style
    uv run ruff check .
    
    # Auto-fix style issues
    uv run ruff check --fix .
    
    # Format code
    uv run ruff format .
    
  3. Test your changes:

    # Run the test suite
    uv run python test_server.py
    
    # Test with the fixture project
    export PYTHONPATH="${PYTHONPATH}:./fixtures/testproject"
    uv run django-telescope --settings testproject.settings
    
  4. Commit your changes:

    git add .
    git commit -m "feat: add new feature" # or "fix: resolve bug"
    

    We follow Conventional Commits:

    • feat: for new features
    • fix: for bug fixes
    • docs: for documentation changes
    • chore: for maintenance tasks
    • test: for test changes
    • refactor: for code refactoring
  5. Push to your fork:

    git push origin feature/your-feature-name
    
  6. Create a Pull Request on GitHub from your fork to the main repository

Contribution Guidelines

  • Code Quality: Ensure your code passes linting (ruff check) and formatting (ruff format)
  • Testing: Add tests for new features and ensure existing tests pass
  • Documentation: Update the README and relevant documentation for new features
  • Commits: Use clear, descriptive commit messages following Conventional Commits
  • Pull Requests: Provide a clear description of what your PR does and why
  • Issues: Check existing issues before creating a new one

What to Contribute

We're especially interested in:

  • New MCP Tools: Add new tools to expose more Django functionality
  • Bug Fixes: Fix issues reported in GitHub Issues
  • Documentation: Improve setup guides, add examples, or clarify existing docs
  • Tests: Expand test coverage for existing features
  • Performance: Optimize slow operations or reduce memory usage
  • Compatibility: Ensure compatibility with different Django versions

Need Help?

  • Look at existing code for examples
  • Open a GitHub Issue for questions or discussions
  • Review closed PRs to see how others have contributed

Code of Conduct

Please be respectful and constructive in all interactions. We aim to maintain a welcoming and inclusive community.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_telescope-0.1.3.tar.gz (444.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_telescope-0.1.3-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

Details for the file django_telescope-0.1.3.tar.gz.

File metadata

  • Download URL: django_telescope-0.1.3.tar.gz
  • Upload date:
  • Size: 444.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for django_telescope-0.1.3.tar.gz
Algorithm Hash digest
SHA256 05019a0e458e8fa50946d2d2bd0b926fdec7fa3b953b09325b3e538660f3a104
MD5 7245d5447407c2f2b217b788c339b81c
BLAKE2b-256 a00c321fc4dffefa4c01fa4fa5efa2fc48a55101cc06ebbae392c8923e588000

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_telescope-0.1.3.tar.gz:

Publisher: publish.yml on raisiqueira/django-telescope

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_telescope-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_telescope-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3cbfa8e253e7cbf10227188f5b26adcea3ff8c42391d162140d4d4d1cf21706f
MD5 8a62336c46ef0a75305a18baff362117
BLAKE2b-256 5a0de617d96f284c4246ade6b930fe2f23d827bc08041a26ec307664b61e31e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_telescope-0.1.3-py3-none-any.whl:

Publisher: publish.yml on raisiqueira/django-telescope

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page