You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Model Context Protocol (MCP) server providing a stateful Django shell for AI assistants to interact with Django projects.
19
+
A Model Context Protocol (MCP) server providing a stateful Django shell for LLM assistants to interact with Django projects.
20
20
21
21
## Requirements
22
22
@@ -160,7 +160,7 @@ Don't see your client? [Submit a PR](CONTRIBUTING.md) with setup instructions.
160
160
161
161
## Features
162
162
163
-
mcp-django-shell provides an MCP server with a stateful Django shell for AI assistants. It sets up Django, maintains session state between calls, and lets the AI write and execute Python code directly against your project.
163
+
mcp-django-shell provides an MCP server with a stateful Django shell for LLM assistants. It sets up Django, maintains session state between calls, and lets the LLM write and execute Python code directly against your project.
164
164
165
165
It wouldn't be an MCP server README without a gratuitous list of features punctuated by emojis, so:
166
166
@@ -169,7 +169,7 @@ It wouldn't be an MCP server README without a gratuitous list of features punctu
169
169
- 🔄 **Persistent state** - Imports and variables stick around between calls
170
170
- 🧹 **Reset when needed** - `django_reset` clears the session when things get weird
171
171
- 🚀 **Zero configuration** - No schemas, no settings, just Django
172
-
- 🤖 **LLM-friendly** - Designed forAI assistants that already know Python
172
+
- 🤖 **LLM-friendly** - Designed forLLM assistants that already know Python
173
173
- 📦 **Minimal dependencies** - Just FastMCP and Django (you already have Django)
174
174
- 🌐 **Multiple transports** - STDIO, HTTP, SSE.. It has it all!
175
175
- 🎯 **Does one thing well** - Runs code. That's it. That's the feature.
@@ -193,7 +193,7 @@ Two tools handle shell operations and session management:
193
193
- `django_shell` - Execute Python code in a persistent Django shell session
194
194
- `django_reset` - Reset the session, clearing all variables and imports
195
195
196
-
Imports and variables persist between calls within the shell tool, so the AI can work iteratively - exploring your models, testing queries, debugging issues.
196
+
Imports and variables persist between calls within the shell tool, so the LLM can work iteratively - exploring your models, testing queries, debugging issues.
0 commit comments