Trello MCP Server for VS Code
io.github.stucchi/trello
MCP server for the Trello REST API – manage boards, lists, cards, labels, checklists and more
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": {
"trello": {
"type": "stdio",
"command": "uvx",
"args": [
"trello-mcp"
],
"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