We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kanta-Inc/docdocdoc-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•285 B
import sys
import os
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from server import mcp
def main():
"""Main entry point for the MCP server"""
# Run with HTTP transport (default port 3000)
mcp.run("http", port=3000)
if __name__ == "__main__":
main()