We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/joshuadavidthomas/mcp-django'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from __future__ import annotations
DEBUG = False
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": ":memory:",
}
}
INSTALLED_APPS = [
"mcp_django",
"mcp_django_shell",
"tests",
]
SECRET_KEY = "test-secret-key"
USE_TZ = True