Skip to content
VS Code

Django Admin MCP for VS Code

io.github.7tg/django-admin-mcp

Django admin models over MCP: CRUD, actions, history, autocomplete — capped by Django permissions.

client:VS Code transport:stdio runtime:pypi

Install Django Admin MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "host",
      "description": "host",
      "password": true
    }
  ],
  "servers": {
    "django-admin-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "django-admin-mcp"
      ],
      "env": {
        "host": "${input:host}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Django Admin MCP in other clients