We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ivangrynenko/devstandards_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•350 B
#!/usr/bin/env python
"""Entry point for the DevStandards MCP Server"""
import sys
from pathlib import Path
# Add the project root to Python path
project_root = Path(__file__).parent
sys.path.insert(0, str(project_root))
# Now import and run the server
from src.server import main
import asyncio
if __name__ == "__main__":
asyncio.run(main())