Skip to content

Commit b1065aa

Browse files
update wording to be clearer about AI vs LLM distinction (#26)
1 parent 6d237fc commit b1065aa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cog.outl(f"![Django Version](https://img.shields.io/badge/django-{'%20%7C%20'.jo
1616
![Django Version](https://img.shields.io/badge/django-4.2%20%7C%205.1%20%7C%205.2%20%7C%20main-%2344B78B?labelColor=%23092E20)
1717
<!-- [[[end]]] -->
1818

19-
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.
2020

2121
## Requirements
2222

@@ -160,7 +160,7 @@ Don't see your client? [Submit a PR](CONTRIBUTING.md) with setup instructions.
160160
161161
## Features
162162
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.
164164
165165
It wouldn't be an MCP server README without a gratuitous list of features punctuated by emojis, so:
166166

@@ -169,7 +169,7 @@ It wouldn't be an MCP server README without a gratuitous list of features punctu
169169
- 🔄 **Persistent state** - Imports and variables stick around between calls
170170
- 🧹 **Reset when needed** - `django_reset` clears the session when things get weird
171171
- 🚀 **Zero configuration** - No schemas, no settings, just Django
172-
- 🤖 **LLM-friendly** - Designed for AI assistants that already know Python
172+
- 🤖 **LLM-friendly** - Designed for LLM assistants that already know Python
173173
- 📦 **Minimal dependencies** - Just FastMCP and Django (you already have Django)
174174
- 🌐 **Multiple transports** - STDIO, HTTP, SSE.. It has it all!
175175
- 🎯 **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:
193193
- `django_shell` - Execute Python code in a persistent Django shell session
194194
- `django_reset` - Reset the session, clearing all variables and imports
195195

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.
197197

198198
## Development
199199

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies = [
6969
"fastmcp>=2.11.3",
7070
"pydantic[email]>=2.11.7",
7171
]
72-
description = "MCP server providing a stateful Django shell for AI assistants."
72+
description = "MCP server providing a stateful Django shell for LLM assistants."
7373
name = "mcp-django-shell"
7474
readme = "README.md"
7575
version = "0.7.0"

0 commit comments

Comments
 (0)