We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kaiohz/mcp-perplexica'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•185 B
"""MCP server main entry point."""
from config import Settings
from dependencies import mcp
settings = Settings()
if __name__ == "__main__":
mcp.run(transport=settings.transport)