We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcp-service/media-crawler-mcp-service'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# -*- coding: utf-8 -*-
from __future__ import annotations
import warnings
import uvicorn
from app.api_service import main_asgi
from app.config.settings import global_settings
# Suppress websockets deprecation warnings until uvicorn fully migrates to new API
warnings.filterwarnings(
"ignore",
category=DeprecationWarning,
module="websockets.legacy",
)
warnings.filterwarnings(
"ignore",
category=DeprecationWarning,
module="uvicorn.protocols.websockets.websockets_impl",
)
if __name__ == "__main__":
uvicorn.run(main_asgi, host="0.0.0.0", port=global_settings.app.port)