Skip to main content
Glama

AnyDB MCP Server

by iamayuppie
mcp_server_stdio.py672 B
#!/usr/bin/env python3 """ MCP Server stdio entry point for Claude Desktop integration. This is a clean entry point that produces no console output, only MCP protocol messages via stdio. """ import os import sys import asyncio # Disable all startup messages for clean stdio communication os.environ['MCP_DISABLE_STARTUP_MESSAGES'] = '1' # Add current directory to path for module imports sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) from mcp_server import main as mcp_main if __name__ == "__main__": try: asyncio.run(mcp_main()) except Exception: # Exit silently - all errors are logged to mcp_server.log sys.exit(1)

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/iamayuppie/AnyDbApp'

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