Trello MCP Server for VS Code
io.github.jimdrews/fastmcp-trello
Manage Trello boards, lists, and cards from any MCP-compatible AI assistant
client:VS Code
transport:stdio
runtime:pypi
Install Trello MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "trello-api-key",
"description": "TRELLO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "trello-token",
"description": "TRELLO_TOKEN",
"password": true
}
],
"servers": {
"fastmcp-trello": {
"type": "stdio",
"command": "uvx",
"args": [
"fastmcp-trello"
],
"env": {
"TRELLO_API_KEY": "${input:trello-api-key}",
"TRELLO_TOKEN": "${input:trello-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs