Skip to content
VS Code

trello mcp server for VS Code

io.github.billnobill/trello-mcp-server

Trello Model Context Protocol (MCP) Server for AI Agents

client:VS Code transport:stdio runtime:npm

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
    },
    {
      "type": "promptString",
      "id": "trello-base-url",
      "description": "TRELLO_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "trello-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@billnobill/trello-mcp-server"
      ],
      "env": {
        "TRELLO_API_KEY": "${input:trello-api-key}",
        "TRELLO_TOKEN": "${input:trello-token}",
        "TRELLO_BASE_URL": "${input:trello-base-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

trello mcp server in other clients