We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kbadinger/ticktickmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"mcpServers": {
"weather": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "OWM_API_KEY", "mcp/openweather"],
"env": {
"OWM_API_KEY": "your_openweather_api_key_here"
}
},
"perplexity": {
"command": "npx",
"args": ["-y", "@perplexity-ai/mcp-server"],
"env": {
"PERPLEXITY_API_KEY": "your_perplexity_api_key_here"
}
},
"ticktick": {
"command": "python",
"args": ["/absolute/path/to/ticktick-api-client/ticktick_mcp_server.py"],
"env": {
"TICKTICK_CLIENT_ID": "your_ticktick_client_id",
"TICKTICK_CLIENT_SECRET": "your_ticktick_client_secret",
"TICKTICK_REDIRECT_URI": "http://127.0.0.1:8080"
}
}
}
}