We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hellomcp/mcp-demo1'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•182 B
from .server import main as async_main
import asyncio
def main():
"""Synchronous entry point for the package."""
asyncio.run(async_main())
__all__ = ['main', 'async_main']