claude-cockpit
Uses the OpenAI API for AI auto-categorization of tasks based on their content.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@claude-cockpitshow me the current board status"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Claude Cockpit
A kanban task board with an MCP server and web UI, designed for managing tasks with Claude Code.
Claude agents can pick tasks, claim them, move them across columns, and work through a prioritized backlog — all through MCP tools. A web dashboard lets you drag and drop tasks, view details, and manage the board visually.
Features
Kanban board with columns: bank, todo, in_progress, testing, done
MCP server — Claude Code can list, create, claim, move, and update tasks
Web UI — drag-and-drop board at
http://localhost:3333with live WebSocket updatesMulti-agent safe — file-based locking prevents race conditions when multiple agents work concurrently
Claude Code plugin — slash commands (
/board,/pick,/done,/create) and hooks for automated workflowSnooze app integration — optional integration with the Snooze task app (calendar import, task sync)
Task priorities & categories — prioritize work and tag tasks by type
Image attachments — attach screenshots and images to tasks
AI auto-categorization — tasks are auto-tagged using Claude when created via MCP
Related MCP server: kanban-lite
Prerequisites
Node.js 20+
Claude Code CLI (install guide)
jq (for shell hooks) —
brew install jqon macOS
Installation
# Clone the repo
git clone https://github.com/shmuelix/claude-cockpit.git
cd claude-cockpit
# Install dependencies
npm install
# Build
npm run buildSetup
1. Environment variables
Copy the example env file and fill in your keys:
cp .env.example .envEdit .env:
OPENAI_API_KEY— required for AI auto-categorization of tasksCALENDAR_FEED_URL— optional, for Snooze calendar import
2. Start the web server
npm run webThis starts the web dashboard at http://localhost:3333.
3. Configure Claude Code MCP server
Add this to your Claude Code MCP settings (~/.claude/plugins/claude-cockpit.json or via claude mcp add):
claude mcp add claude-cockpit -- node /absolute/path/to/claude-cockpit/build/mcp-server.jsOr manually add to your Claude Code settings:
{
"mcpServers": {
"claude-cockpit": {
"command": "node",
"args": ["/absolute/path/to/claude-cockpit/build/mcp-server.js"]
}
}
}4. Install the Claude Code plugin (optional but recommended)
This gives you slash commands and workflow hooks:
claude plugin add /absolute/path/to/claude-cockpit/pluginThis enables:
/board— show board status/pick— pick the next task/done— finish current task and pick next/create— create a new taskAuto-continue workflow after completing tasks
Terminal title updates showing current task
5. Snooze app integration (optional)
If you use the Snooze app, copy the example config and fill in your credentials:
cp snooze-config.example.json snooze-config.jsonEdit snooze-config.json with your Snooze userId and API key.
Usage
Web UI
Open http://localhost:3333 after starting the web server. You can:
Drag and drop tasks between columns
Click tasks to view/edit details
Create new tasks with the + button or press
nAdd notes and image attachments
Filter by category and priority
With Claude Code
Once the MCP server is configured, Claude Code can manage your board:
> /pick # Pick the next task and start working
> /board # Show board status
> /done # Finish current task
> /create Fix the login bug on mobileClaude will automatically:
Claim tasks before working on them
Add notes as it works
Move tasks to testing/done when finished
Pick the next task automatically
MCP Tools
Available tools when connected via MCP:
list_tasks— list all tasks grouped by columnget_task— get full task detailscreate_task— create a new taskupdate_task— update task fieldsmove_task— move task between columnsclaim_task/unclaim_task— claim/release task ownershipadd_note— add a note to a taskdelete_task— delete a tasksnooze_*— Snooze app integration tools (if configured)
Project Structure
claude-cockpit/
├── src/
│ ├── mcp-server.ts # MCP server (Claude Code interface)
│ ├── web-server.ts # Express + WebSocket web server
│ ├── store.ts # Task storage with file-based locking
│ ├── types.ts # TypeScript types
│ ├── snooze-api.ts # Snooze app API client
│ └── import-todo.ts # Import tasks from external sources
├── public/
│ └── index.html # Web UI (single-page app)
├── plugin/
│ ├── commands/ # Claude Code slash commands
│ ├── hooks/ # Workflow automation hooks
│ └── skills/ # Claude Code skills
├── tasks.json # Task data (auto-created, gitignored)
├── column-orders.json # Column sort order (auto-created, gitignored)
└── uploads/ # Image attachments (gitignored)Data
All task data is stored locally in tasks.json. No external database required. The file is created automatically when you first create a task.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shmuelix/claude-cockpit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server