Skip to main content

django-stateless-mcp

PyPI version Documentation status

An MCP (Model Context Protocol) server is how AI agents — Claude Code, ChatGPT, and the assistants built on them — connect to your application in a controlled way: they see and call only the tools you choose to expose, under the permissions you enforce. As your users lean on AI for more of their work, it pays to be ready to accommodate their agents without loosening the protections Django already gives your data and infrastructure — and that is what this package is for.

django-stateless-mcp is a stateless MCP server for Django, built on the 2026-07-28 spec. An MCP endpoint becomes an ordinary Django view — no sessions, no SSE, no sticky routing, and no dedicated single-process service.

Why use this

  • Your MCP server is an ordinary Django view — same deployment, same middleware, same monitoring, and tools call your models and business logic directly. No separate MCP service to build, secure, and operate.
  • It scales like the rest of your Django app — any worker on any instance can serve any request, including an elicitation answer. See Why stateless for what changed on 2026-07-28 to make that possible.
  • Tools can ask the user questions — fill in missing form fields, or require explicit confirmation before an update or delete, resuming on whichever worker the answer lands on: request_state_security() keys the resume state from SECRET_KEY. See the elicitation recipe.
  • Kick off a long job, keep chatting, and the result comes back when it's ready — see the long-running jobs recipe.
  • Your authentication and permissions work inside tools — bearer auth resolves to a real Django user, so user.has_perm(...) just works, and PermittedToolsFilter hides tools a user may not use from tools/list.
  • You can see what your MCP is doing — optional structlog middleware logs one queryable event per request.
  • Tools register the Django way — each app's mcp.py is discovered automatically, exactly like admin.py.

Usage

# myproject/mcp.py
from mcp.server.mcpserver import MCPServer

from django_stateless_mcp import request_state_security

server = MCPServer(
    name="my-server",
    version="1.0.0",
    request_state_security=request_state_security(),
)


@server.tool()
def add(a: int, b: int) -> int:
    """Add two integers."""
    return a + b
# urls.py
from django.urls import path

from django_stateless_mcp import mcp_view
from myproject.mcp import server

urlpatterns = [path("mcp/", mcp_view(server))]

That is the whole integration. The endpoint runs under both WSGI and ASGI.

What it provides

  • mcp_view(server) — serve an MCPServer as a stateless streamable-HTTP Django view, optionally requiring OAuth bearer auth via a token_verifier.
  • mcp.py autodiscovery — add django_stateless_mcp to INSTALLED_APPS and each app's mcp.py registers tools, like admin.py.
  • request_state_security() — key the SDK's elicitation-resume encryption from SECRET_KEY, so elicitation survives a multi-worker deployment.
  • django_request(ctx) — reach the authenticated Django request from inside a tool, with no global state.
  • StructlogRequestLogger — optional flow-logging middleware.
  • Subscription streams — clients can subscribe to server-pushed events under ASGI; under WSGI the endpoint declines cleanly rather than pinning a worker.

Tool registration, elicitation, resources and prompts are the MCP SDK's own API; this package is the Django layer around it.

Supported versions

  • Python 3.10–3.14 (3.10 and 3.11 with Django 5.2 LTS only, matching Django's own support)
  • Django 5.2 LTS and 6.0
  • mcp 2.0.x

Each is exercised in CI, along with an advisory job tracking the SDK's git main.

Try it live

The repo ships a runnable example project. docker compose up starts it behind four worker processes (no local uv or Python needed; just demo-asgi is the host-run equivalent); the example README quick start walks through watching an elicitation started on one worker resume on another — the package's thesis, observable with curl or any MCP client.

Documentation

Full documentation, including a worked elicitation example and the design decisions behind the package, is at https://django-stateless-mcp.readthedocs.io/.

Development

Contributors: ARCHITECTURE.md maps how the package works and the invariants every change must preserve; CONTRIBUTING.md covers the workflow.

git clone git@github.com:Streamlined-Analytics/django-stateless-mcp.git
cd django-stateless-mcp
uv sync

uv run pytest                        # quick run: locked Django
uvx --with tox-uv tox run -f py313   # the full matrix: Django 5.2 + 6.0
just qa                              # format, lint, type check, test
just conformance                     # the official MCP conformance suite

Author

django-stateless-mcp was created in 2026 by Ben Atkinson.

Started from the audreyfeldroy/cookiecutter-pypackage template.

Download files

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

Source Distribution

django_stateless_mcp-0.1.10.tar.gz (268.8 kB view details)

Uploaded Source

Built Distribution

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

django_stateless_mcp-0.1.10-py3-none-any.whl (19.5 kB view details)

Uploaded Python 3

File details

Details for the file django_stateless_mcp-0.1.10.tar.gz.

File metadata

  • Download URL: django_stateless_mcp-0.1.10.tar.gz
  • Upload date:
  • Size: 268.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for django_stateless_mcp-0.1.10.tar.gz
Algorithm Hash digest
SHA256 3cca5f8a9d2942ac597e51ba73343fce44da70ad0b526ec888dd0761dfc9b83d
MD5 f41cf6edca7ad7e42b750712faf292b4
BLAKE2b-256 73b1a29fab370657025f98e6b371d5cc0673b75748f8da82ed1cb67401f3ea42

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_stateless_mcp-0.1.10.tar.gz:

Publisher: publish.yml on Streamlined-Analytics/django-stateless-mcp

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_stateless_mcp-0.1.10-py3-none-any.whl.

File metadata

File hashes

Hashes for django_stateless_mcp-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 de82c3075d6c66127b3b1249c5a9bcae4539131afc01a167f418cb6e4c988635
MD5 c1862f9c2461cf6a30722ee0908be2d5
BLAKE2b-256 334b9986d1ee838265032cabf2e76075da1db21078043a8f2ea44bb80accfcef

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_stateless_mcp-0.1.10-py3-none-any.whl:

Publisher: publish.yml on Streamlined-Analytics/django-stateless-mcp

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

Release history Release notifications | RSS feed

0.1.11

2 files

This release

0.1.10 This release

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page