Dynamic Kanban
About
A dynamic, visual kanban board that lets you collab with Claude, and updates in realtime!
Details
- Author
- renatokuipers
- Downloads
- 232
- Categories
- Other, Communication
Jump to
- Real‑time collaboration via WebSocket between Claude AI and HTML UI
- Dual‑mode operation: Autonomous (Claude controls) and Manual (user controls)
- Pre‑made interactive kanban board interface, no setup delays
- Drag & drop card movement with instant bidirectional sync
- Comprehensive task management with Pydantic validation and dependency checking
- Bulk operations, session tracking, and atomic state management with backup/restore
- Robust WebSocket reconnection with exponential backoff and fallback ports
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Dynamic KanbanCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install dependencies (pip install websockets pydantic), then start the server (python3 mcp-kanban-server.py), and open kanban-board.html in your browser to connect via WebSocket on port 8765. Add the server to your Claude MCP configuration using the provided JSON snippet.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"dynamic kanban": {
"dynamic-kanban": {
"command": "python3",
"args": [
"./mcp-kanban-server.py"
],
"env": [],
"description": "Dynamic Kanban MCP Server v3.0 - Real-time project management with WebSocket sync",
"version": "3.0.0",
"capabilities": {
"tools": [
"create_project",
"add_feature",
"configure_board",
"import_features",
"kanban_status",
"kanban_get_ready_tasks",
"kanban_get_next_task",
"kanban_move_card",
"kanban_update_progress",
"kanban_start_session",
"kanban_end_session",
"analyze_task_requirements",
"validate_dependencies",
"validate_project_dependencies",
"get_task_details",
"clear_kanban",
"delete_project",
"remove_feature",
"remove_features",
"clear_column",
"reset_board"
],
"features": [
"Dynamic project creation for any project type",
"Real-time UI generation with WebSocket sync",
"Bidirectional sync between Claude and HTML UI",
"Feature management with dependencies and circular dependency detection",
"Pydantic data validation with comprehensive error handling",
"Board configuration and customization",
"JSON import/export for data portability",
"Development session tracking",
"Task analysis and implementation planning",
"Drag & drop interface with live updates",
"Cross-project compatibility",
"Centralized configuration management",
"Modular JavaScript architecture"
]
}
}
}
}
}
McpServers
{
"dynamic-kanban": {
"command": "python3",
"args": [
"./mcp-kanban-server.py"
],
"env": [],
"description": "Dynamic Kanban MCP Server v3.0 - Real-time project management with WebSocket sync",
"version": "3.0.0",
"capabilities": {
"tools": [
"create_project",
"add_feature",
"configure_board",
"import_features",
"kanban_status",
"kanban_get_ready_tasks",
"kanban_get_next_task",
"kanban_move_card",
"kanban_update_progress",
"kanban_start_session",
"kanban_end_session",
"analyze_task_requirements",
"validate_dependencies",
"validate_project_dependencies",
"get_task_details",
"clear_kanban",
"delete_project",
"remove_feature",
"remove_features",
"clear_column",
"reset_board"
],
"features": [
"Dynamic project creation for any project type",
"Real-time UI generation with WebSocket sync",
"Bidirectional sync between Claude and HTML UI",
"Feature management with dependencies and circular dependency detection",
"Pydantic data validation with comprehensive error handling",
"Board configuration and customization",
"JSON import/export for data portability",
"Development session tracking",
"Task analysis and implementation planning",
"Drag & drop interface with live updates",
"Cross-project compatibility",
"Centralized configuration management",
"Modular JavaScript architecture"
]
}
}
}
Dynamic Kanban MCP Server v3.0
A production-ready Model Context Protocol (MCP) server that provides real-time kanban project management with bidirectional synchronization between Claude AI and an interactive HTML interface. Features dual-mode operation with autonomous and manual control.
Features
Core Functionality
- Real-time Collaboration: Bidirectional sync between Claude AI and HTML UI via WebSocket - Universal Project Support: Works with web apps, mobile apps, APIs, desktop software, and more - Pre-made Interface: No setup delays - openkanban-board.html and start immediately
- Dual-Mode Operation: Switch between Autonomous (Claude controls) and Manual (user controls) modes
- Mode Protection: Queuing system prevents conflicts when switching between control modes
Advanced Capabilities
- Drag & Drop Interface: Move cards in browser with instant Claude synchronization - Bulk Operations: Select and manage multiple tasks simultaneously in manual mode - Task Management: Create, edit, delete tasks with comprehensive form validation - Session Tracking: Development session management with time tracking - Atomic Operations: Thread-safe state management with data integrity and backup/restore - Auto-reconnection: Robust WebSocket connection with exponential backoff and fallback ports - Comprehensive Validation: Pydantic models with circular dependency detection and field validation - Real-time Notifications: Toast notifications for all operations and status changesQuick Start
1. Install Dependencies
pip install websockets pydantic
2. Start the Server
```bashSign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




