We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/omarbenhamid/django-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
apps.py•321 B
from django.apps import AppConfig
from django.utils.module_loading import autodiscover_modules
class McpServerConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "mcp_server"
def ready(self):
autodiscover_modules('mcp')
from .djangomcp import init
init()