Planka MCP Server

Planka MCP Server

A Model Context Protocol server that enables AI assistants like Claude to interact directly with Planka Kanban boards, allowing automated management of projects, tasks, and workflows through conversational interfaces.

Category
Visit Server

Tools

mcp_kanban_project_board_manager

Manage projects and boards with various operations

mcp_kanban_list_manager

Manage kanban lists with various operations

mcp_kanban_card_manager

Manage kanban cards with various operations

mcp_kanban_stopwatch

Manage card stopwatches for time tracking

mcp_kanban_label_manager

Manage kanban labels with various operations

README

MCP Planka Server

Servidor MCP (Model Context Protocol) para integración completa con tableros Kanban de Planka. Permite gestionar proyectos, tableros, tarjetas, tareas y colaboración directamente desde aplicaciones MCP como Claude.

🚀 Características

  • Gestión de Proyectos: Crear, listar y administrar proyectos
  • Tableros Kanban: Crear y gestionar tableros con listas personalizadas
  • Gestión de Tarjetas: Crear, mover, duplicar y organizar tarjetas
  • Sistema de Tareas: Crear subtareas y seguimiento de progreso
  • Etiquetas y Categorías: Organizar tarjetas con etiquetas de colores
  • Comentarios: Colaboración a través de comentarios en tarjetas
  • Seguimiento de Tiempo: Cronómetros integrados para time tracking
  • Gestión de Membresías: Control de acceso y permisos por tablero

📋 Herramientas Disponibles

mcp_kanban_project_board_manager

Gestiona proyectos y tableros con operaciones CRUD completas.

  • Parámetros: action, id, projectId, name, position, boardId

mcp_kanban_list_manager

Administra listas dentro de los tableros.

  • Parámetros: action, id, boardId, name, position

mcp_kanban_card_manager

Gestión completa de tarjetas Kanban.

  • Parámetros: action, id, listId, name, description, tasks

mcp_kanban_stopwatch

Control de cronómetros para seguimiento de tiempo.

  • Parámetros: action, id

mcp_kanban_label_manager

Gestión de etiquetas y categorización.

  • Parámetros: action, boardId, name, color, cardId, labelId

mcp_kanban_task_manager

Control de tareas y subtareas.

  • Parámetros: action, cardId, name, tasks, isCompleted

mcp_kanban_comment_manager

Sistema de comentarios para colaboración.

  • Parámetros: action, cardId, text

mcp_kanban_membership_manager

Control de acceso y permisos por tablero.

  • Parámetros: action, boardId, userId, role, canComment

🛠️ Instalación

Instalación General MCP EN LOCAL (NO RECOMENDADO)

  1. Instalar dependencias:
npm install
  1. Configurar variables de entorno:
cp config.example.env .env
# Editar .env con la configuración de su servidor Planka
  1. Compilar:
npm run build

⚙️ Configuración

Variables de Entorno

Variable Descripción Por Defecto
PLANKA_BASE_URL URL base del servidor Planka http://localhost:3000
PLANKA_AGENT_EMAIL Email para autenticación -
PLANKA_AGENT_PASSWORD Contraseña para autenticación -

Configuración MCP en Aplicaciones USANDO NPX (RECOMENDADO)

Ubicación del archivo de configuración

Claude Desktop:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Linux: ~/.config/claude/claude_desktop_config.json

Para Claude Desktop (config.json)

Configuración básica con NPX:

{
  "mcpServers": {
    "planka": {
      "command": "npx",
      "args": ["@grec0/mcp-planka"],
      "env": {
        "PLANKA_BASE_URL": "http://localhost:3000",
        "PLANKA_AGENT_EMAIL": "demo@demo.demo",
        "PLANKA_AGENT_PASSWORD": "demo"
      }
    }
  }
}

Para servidor Planka remoto:

{
  "mcpServers": {
    "planka": {
      "command": "npx",
      "args": ["@grec0/mcp-planka"],
      "env": {
        "PLANKA_BASE_URL": "https://tu-planka-server.com",
        "PLANKA_AGENT_EMAIL": "tu-email@ejemplo.com",
        "PLANKA_AGENT_PASSWORD": "tu-contraseña"
      }
    }
  }
}

Para instalación local

{
  "mcpServers": {
    "planka": {
      "command": "node",
      "args": ["C:/ruta/a/kanban-mcp/dist/index.js"],
      "env": {
        "PLANKA_BASE_URL": "http://localhost:3000",
        "PLANKA_AGENT_EMAIL": "demo@demo.demo",
        "PLANKA_AGENT_PASSWORD": "demo"
      }
    }
  }
}

Para entorno de desarrollo

{
  "mcpServers": {
    "planka": {
      "command": "npm",
      "args": ["run", "dev"],
      "cwd": "C:/ruta/a/kanban-mcp",
      "env": {
        "PLANKA_BASE_URL": "http://localhost:3000",
        "PLANKA_AGENT_EMAIL": "demo@demo.demo",
        "PLANKA_AGENT_PASSWORD": "demo"
      }
    }
  }
}

Verificar configuración MCP

Después de configurar el MCP, puedes verificar que funciona correctamente:

  1. Reiniciar la aplicación (Claude Desktop, etc.)
  2. Probar operación básica:
    mcp_kanban_project_board_manager(action: "get_projects", page: 1, perPage: 10)
    
  3. Crear un tablero de prueba:
    mcp_kanban_project_board_manager(action: "create_board", projectId: "ID_DEL_PROYECTO", name: "Tablero de Prueba", position: 1)
    

Variables de Entorno Principales

# Configuración básica
PLANKA_BASE_URL=http://localhost:3000
PLANKA_AGENT_EMAIL=demo@demo.demo
PLANKA_AGENT_PASSWORD=demo

Configuración de Servidor Planka Local

Si necesita un servidor Planka local para desarrollo:

# Usando Docker Compose
docker-compose up -d

# O usando NPM scripts del proyecto
npm run up

# Acceder a Planka
# URL: http://localhost:3000
# Credenciales por defecto: demo@demo.demo / demo

🚀 Uso

Iniciar el servidor (instalación local)

npm run start

Modo desarrollo

npm run dev

Con inspector MCP

npm run inspector

Scripts Docker (Para Planka local)

# Iniciar contenedores Planka
npm run up

# Detener contenedores
npm run down

# Reiniciar contenedores
npm run restart

📚 Ejemplos de Uso

Gestión de Proyectos

// Listar proyectos
mcp_kanban_project_board_manager({
  action: "get_projects",
  page: 1,
  perPage: 10
})

// Crear tablero
mcp_kanban_project_board_manager({
  action: "create_board",
  projectId: "project_id",
  name: "Mi Nuevo Tablero",
  position: 1
})

Gestión de Tarjetas

// Crear tarjeta con tareas
mcp_kanban_card_manager({
  action: "create_with_tasks",
  listId: "list_id",
  name: "Nueva Funcionalidad",
  description: "Implementar nueva característica",
  tasks: ["Diseño", "Desarrollo", "Testing", "Deploy"],
  comment: "Tarjeta creada automáticamente"
})

// Mover tarjeta entre listas
mcp_kanban_card_manager({
  action: "move",
  id: "card_id",
  listId: "new_list_id",
  position: 0
})

Seguimiento de Tiempo

// Iniciar cronómetro
mcp_kanban_stopwatch({
  action: "start",
  id: "card_id"
})

// Detener cronómetro
mcp_kanban_stopwatch({
  action: "stop",
  id: "card_id"
})

🔧 Solución de Problemas

Error de Conexión con Planka

Si obtiene errores de conexión:

  1. Verificar URL base: Asegúrese que PLANKA_BASE_URL sea correcta
  2. Verificar credenciales: Email y contraseña deben ser válidos
  3. Verificar conectividad: El servidor Planka debe estar ejecutándose
# Probar conectividad manualmente
curl -X POST http://localhost:3000/api/access-tokens \
  -H "Content-Type: application/json" \
  -d '{"emailOrUsername": "demo@demo.demo", "password": "demo"}'

Error NPX "Package not found"

Si NPX no encuentra el paquete:

# Limpiar cache de NPX
npx clear-npx-cache

# O instalar globalmente
npm install -g @grec0/mcp-planka

Problemas de Autenticación

# Verificar variables de entorno
echo $PLANKA_BASE_URL
echo $PLANKA_AGENT_EMAIL
# No mostrar password en logs por seguridad

Error de Configuración MCP

  1. Verificar sintaxis JSON en el archivo de configuración
  2. Reiniciar la aplicación después de cambios
  3. Verificar rutas absolutas si usa instalación local

Variables de Entorno Faltantes

Verificar:

  1. PLANKA_BASE_URL configurada correctamente
  2. PLANKA_AGENT_EMAIL y PLANKA_AGENT_PASSWORD válidos
  3. Servidor Planka accesible desde la red

🧪 Testing

npm test

📖 Compatibilidad

  • Planka: v1.0.0+
  • Node.js: >=18.0.0
  • Sistemas: Windows, Linux, macOS
  • MCP: Compatible con Claude Desktop y otros clientes MCP

🔐 Seguridad

  • Autenticación basada en credenciales de Planka
  • Comunicación a través de API REST estándar
  • Variables de entorno para credenciales seguras
  • Sin almacenamiento local de credenciales

🤝 Contribución

  1. Fork el proyecto
  2. Crear branch para feature (git checkout -b feature/nueva-funcionalidad)
  3. Commit cambios (git commit -am 'Add nueva funcionalidad')
  4. Push al branch (git push origin feature/nueva-funcionalidad)
  5. Crear Pull Request

📜 License

Este proyecto está licenciado bajo la Licencia MIT - ver el archivo LICENSE para detalles.

🆘 Support

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured