Planka MCP for VS Code
io.github.omnicoreos/planka-mcp
Planka 2.x MCP server with verified card, task, comment, label, and list operations.
client:VS Code
transport:stdio
runtime:npm
Install Planka MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "planka-base-url",
"description": "PLANKA_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "planka-api-key",
"description": "PLANKA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "planka-agent-email",
"description": "PLANKA_AGENT_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "planka-agent-password",
"description": "PLANKA_AGENT_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "planka-default-board-id",
"description": "PLANKA_DEFAULT_BOARD_ID",
"password": true
},
{
"type": "promptString",
"id": "planka-allowed-board-ids",
"description": "PLANKA_ALLOWED_BOARD_IDS",
"password": true
},
{
"type": "promptString",
"id": "planka-allowed-project-ids",
"description": "PLANKA_ALLOWED_PROJECT_IDS",
"password": true
},
{
"type": "promptString",
"id": "planka-read-only",
"description": "PLANKA_READ_ONLY",
"password": true
},
{
"type": "promptString",
"id": "planka-disabled-tools",
"description": "PLANKA_DISABLED_TOOLS",
"password": true
},
{
"type": "promptString",
"id": "planka-protected-list-ids",
"description": "PLANKA_PROTECTED_LIST_IDS",
"password": true
},
{
"type": "promptString",
"id": "planka-hide-deprecated",
"description": "PLANKA_HIDE_DEPRECATED",
"password": true
},
{
"type": "promptString",
"id": "planka-summary-highlight-label",
"description": "PLANKA_SUMMARY_HIGHLIGHT_LABEL",
"password": true
},
{
"type": "promptString",
"id": "planka-summary-decision-lists",
"description": "PLANKA_SUMMARY_DECISION_LISTS",
"password": true
}
],
"servers": {
"planka-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@omnicoreos/planka-mcp"
],
"env": {
"PLANKA_BASE_URL": "${input:planka-base-url}",
"PLANKA_API_KEY": "${input:planka-api-key}",
"PLANKA_AGENT_EMAIL": "${input:planka-agent-email}",
"PLANKA_AGENT_PASSWORD": "${input:planka-agent-password}",
"PLANKA_DEFAULT_BOARD_ID": "${input:planka-default-board-id}",
"PLANKA_ALLOWED_BOARD_IDS": "${input:planka-allowed-board-ids}",
"PLANKA_ALLOWED_PROJECT_IDS": "${input:planka-allowed-project-ids}",
"PLANKA_READ_ONLY": "${input:planka-read-only}",
"PLANKA_DISABLED_TOOLS": "${input:planka-disabled-tools}",
"PLANKA_PROTECTED_LIST_IDS": "${input:planka-protected-list-ids}",
"PLANKA_HIDE_DEPRECATED": "${input:planka-hide-deprecated}",
"PLANKA_SUMMARY_HIGHLIGHT_LABEL": "${input:planka-summary-highlight-label}",
"PLANKA_SUMMARY_DECISION_LISTS": "${input:planka-summary-decision-lists}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs