We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/drewtech/mcp-ai-poc'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
app.py•257 B
"""
MCP AI POC Application - MCP Server Mode Only
"""
import asyncio
from .standalone_server import main as server_main
def main():
"""Main entry point - runs MCP server only."""
asyncio.run(server_main())
if __name__ == "__main__":
main()