We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aepod/trello-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"mcp": {
"servers": {
"trello": {
"command": "node",
"args": ["dist/index.js"],
"cwd": "${workspaceFolder}",
"env": {
"TRELLO_API_KEY": "${env:TRELLO_API_KEY}",
"TRELLO_TOKEN": "${env:TRELLO_TOKEN}",
"LOG_LEVEL": "info"
},
"autoStart": true,
"timeout": 30000
}
},
"logging": {
"level": "info",
"destination": "./logs/windsurf-mcp.log"
}
},
"ai": {
"providers": {
"claude": {
"mcpServers": ["trello"],
"contextWindow": 200000,
"maxTokens": 4096
}
},
"features": {
"codeGeneration": true,
"codeReview": true,
"debugging": true,
"testing": true
}
},
"workspace": {
"autoSave": true,
"formatOnSave": true,
"linting": {
"enabled": true,
"onSave": true
}
}
}