We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wwiens/trakt_mcpserver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•453 B
# Backward compatibility - import from new modular structure
import sys
from server.main import mcp
if __name__ == "__main__":
# Print to stderr to avoid polluting stdout (required for stdio transport)
print("Starting Trakt MCP server...", file=sys.stderr)
print("Run 'mcp dev server.py' to test with the MCP Inspector", file=sys.stderr)
print("Run 'mcp install server.py' to install in Claude Desktop", file=sys.stderr)
mcp.run()