loading…
Search for a command to run...
loading…
Enables AI assistants to interact with Planka, a real-time Kanban board application, for managing projects, boards, lists, cards, and more.
Enables AI assistants to interact with Planka, a real-time Kanban board application, for managing projects, boards, lists, cards, and more.
npm version Docker Image Version License: MIT
An MCP server that enables AI assistants (Claude, VS Code Copilot, etc.) to interact with Planka - a real-time Kanban board application.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"planka": {
"command": "npx",
"args": ["@chmald/planka-mcp"],
"env": {
"PLANKA_BASE_URL": "http://localhost:3000",
"PLANKA_API_KEY": "your-api-key"
}
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"planka": {
"type": "stdio",
"command": "npx",
"args": ["@chmald/planka-mcp"],
"env": {
"PLANKA_BASE_URL": "http://localhost:3000",
"PLANKA_API_KEY": "your-api-key"
}
}
}
}
{
"mcpServers": {
"planka": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "PLANKA_BASE_URL=http://host.docker.internal:3000",
"-e", "PLANKA_API_KEY=your-api-key",
"chmald/planka-mcp:latest"
]
}
}
}
Note: Use
host.docker.internalinstead oflocalhostwhen running Docker.
| Variable | Required | Default | Description |
|---|---|---|---|
PLANKA_BASE_URL |
Yes | http://localhost:3000 |
Your Planka instance URL |
PLANKA_API_KEY |
No* | - | Planka API key sent as X-Api-Key |
PLANKA_USERNAME |
No* | - | Planka username or email |
PLANKA_PASSWORD |
No* | - | Planka password |
MCP_TRANSPORT |
No | stdio |
MCP transport mode: stdio or sse |
MCP_PORT |
No | 3001 |
HTTP port used when MCP_TRANSPORT=sse |
PLANKA_HTTP_MAX_RETRIES |
No | 2 |
Max retry attempts for transient HTTP/network failures per request |
PLANKA_HTTP_RETRY_BASE_DELAY_MS |
No | 250 |
Base retry delay in milliseconds (exponential backoff) |
ENABLE_ALL_TOOLS |
No | false |
Enable all 27 tools |
ENABLE_ADMIN_TOOLS |
No | false |
Enable admin tools |
ENABLE_OPTIONAL_TOOLS |
No | false |
Enable optional tools |
* Authentication is required. Provide either PLANKA_API_KEY, or both PLANKA_USERNAME and PLANKA_PASSWORD.
PLANKA_API_KEY.PLANKA_USERNAME and PLANKA_PASSWORD.PLANKA_API_KEY.408, 429, 5xx) and network request errors.PLANKA_HTTP_RETRY_BASE_DELAY_MS * 2^attempt.PLANKA_HTTP_MAX_RETRIES controls additional attempts after the initial request.By default, 10 core tools are enabled for essential Kanban operations:
| Category | Tools | Description |
|---|---|---|
| Core | 10 | Auth, projects, boards, lists, cards, tasks, comments, labels (always enabled) |
| Optional | 13 | Attachments, custom fields, notifications, etc. |
| Admin | 4 | User management, webhooks, config |
Enable more tools:
"env": {
"ENABLE_ALL_TOOLS": "true"
}
Each tool uses an action parameter. Example: { "action": "list" } or { "action": "get", "id": "123" }
| Tool | Actions |
|---|---|
auth |
login, logout, acceptTerms, oidcExchange, revokePending, getTerms |
bootstrap |
get - Get app data, user info, projects |
projects |
list, get, create, update, delete |
boards |
get, create, update, delete |
lists |
get, create, update, delete |
cards |
list, get, create, update, delete |
comments |
list, create |
tasks |
getList, createList, create, update |
labels |
create, update, delete, addToCard, removeFromCard |
cardMembers |
add, remove |
| Tool | Actions |
|---|---|
config |
get, update, testSmtp |
users |
list, create, update, delete, updateEmail, updatePassword, etc. |
webhooks |
list, create, update, delete |
projectManagers |
add, remove |
| Tool | Actions |
|---|---|
attachments |
create, update, delete |
boardMembers |
add, update, remove |
customFields |
createBaseGroup, createField, setValue, etc. |
notifications |
list, get, markRead, markAllRead, markCardRead, createUserService, createBoardService, updateService, deleteService, testService |
actions |
boardActions, cardActions |
cardExtras |
duplicate |
commentExtras |
update, delete |
listExtras |
clear, moveCards, sort |
taskExtras |
updateList, deleteList, deleteTask |
labelExtras |
update, delete, removeFromCard |
cardMemberExtras |
remove |
backgroundImages |
upload, delete |
userInfo |
get |
For team deployments where multiple clients share one server:
docker run -d \
--name planka-mcp \
-p 3001:3001 \
-e MCP_TRANSPORT=sse \
-e PLANKA_BASE_URL=http://your-planka-server:3000 \
-e PLANKA_API_KEY=your-api-key \
chmald/planka-mcp:latest
Connect clients to http://localhost:3001/sse.
PLANKA_BASE_URL is accessiblehost.docker.internal instead of localhostnode --versionnpm cache clean --forcenpx @chmald/planka-mcp 2>&1 | tee debug.log
Check CHANGELOG.md for full version-by-version details.
auth tool moved from optional tools to core tools and is now always available.PLANKA_API_KEY (X-Api-Key).PLANKA_API_KEY is used.MIT - see LICENSE
Выполни в терминале:
claude mcp add planka-mcp-server -- npx Web content fetching and conversion for efficient LLM usage.
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolProvides auto-configuration for setting up an MCP server in Spring Boot applications.
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzНе уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai