We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DarkEden-coding/CodeStructureMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•294 B
"""Entry point for the MCP server."""
import asyncio
import sys
from pathlib import Path
# Add project root to path (parent of src)
sys.path.insert(0, str(Path(__file__).parent.parent))
from src.mcp_impl.server import main as mcp_main
if __name__ == "__main__":
asyncio.run(mcp_main())