Skip to content
VS Code

mcp server trello for VS Code

io.github.delorenj/mcp-server-trello

MCP server for Trello boards with rate limiting, type safety, and comprehensive API integration.

client:VS Code transport:stdio runtime:npm

Install mcp server 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": {
    "mcp-server-trello": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@delorenj/mcp-server-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

mcp server trello in other clients