Trello for VS Code
io.github.scaratec/trellio-mcp
MCP server for Trello — manage boards, lists, cards, attachments and more via Claude or Gemini
client:VS Code
transport:stdio
runtime:pypi
Install Trello 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": {
"trellio-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"trellio-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