We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/juanqui/pdfkb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•399 B
"""Web services that wrap existing MCP server functionality for FastAPI endpoints."""
from .web_document_service import WebDocumentService
from .web_search_service import WebSearchService
from .web_status_service import WebStatusService
from .websocket_manager import WebSocketManager
__all__ = [
"WebDocumentService",
"WebSearchService",
"WebStatusService",
"WebSocketManager",
]