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•280 B
"""MCP server main entry point."""
from config import Settings
from dependencies import mcp
# Import api module to register MCP tools via decorators
import application.api # noqa: F401
settings = Settings()
if __name__ == "__main__":
mcp.run(transport=settings.transport)