Skip to main content
Glama

MCP Development Server

by dillip285
__init__.py572 B
"""MCP Development Server Package.""" from . import server import asyncio from typing import Optional from .utils.logging import setup_logging logger = setup_logging(__name__) def main(): """Main entry point for the package.""" try: server_instance = server.MCPDevServer() asyncio.run(server_instance.run()) except KeyboardInterrupt: logger.info("Server shutdown requested") except Exception as e: logger.error(f"Server error: {str(e)}") raise # Expose key components at package level __all__ = ['main', 'server']

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dillip285/mcp-dev-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server