kaneo-mcp
v0.0.10
Published
A Model Context Protocol (MCP) server for [Kaneo](https://kaneo.app) - the open-source project management platform.
Downloads
1,246
Readme
Kaneo MCP Server
A Model Context Protocol (MCP) server for Kaneo - the open-source project management platform.
Installation
npm install -g kaneo-mcpOr run directly with npx:
npx kaneo-mcpConfiguration
Configure via environment variables:
| Variable | Description | Default |
|----------|-------------|---------|
| KANEO_BASE_URL | Kaneo API base URL | http://localhost:1337 |
| KANEO_TOKEN | Your Kaneo API token | required |
Getting an API Token
- Log in to your Kaneo instance
- Go to Settings > Account > API Keys
- Create a new API key
Usage
KANEO_BASE_URL=https://your-kaneo.com KANEO_TOKEN=your-token kaneo-mcpClaude Code Integration
Add to your Claude Code MCP settings:
{
"mcpServers": {
"kaneo": {
"command": "npx",
"args": ["kaneo-mcp"],
"env": {
"KANEO_BASE_URL": "https://your-kaneo.com",
"KANEO_TOKEN": "your-token"
}
}
}
}Available Tools
Projects
list_projects- List projects in a workspacecreate_project- Create a new projectget_project- Get project detailsupdate_project- Update a projectdelete_project- Delete a projectarchive_project/unarchive_project- Archive management
Tasks
list_tasks- List tasks with filters (status, priority, assignee)create_task- Create a new taskget_task- Get task detailsupdate_task- Update task fieldsdelete_task- Delete a taskupdate_task_status/update_task_priority/update_task_assignee/update_task_due_date- Partial updatesmove_task- Move task to another project
Columns
list_columns- List columns in a projectcreate_column/update_column/delete_column- Column CRUDreorder_columns- Reorder columns
Comments
list_comments/create_comment/update_comment/delete_comment
Labels
list_labels_for_task/list_workspace_labelscreate_label/get_label/update_label/delete_labelattach_label_to_task/detach_label_from_task
Time Entries
list_time_entries/get_time_entry/create_time_entry/update_time_entry
Task Relations
list_task_relations/create_task_relation/delete_task_relation
Notifications
list_notifications/mark_notification_read/mark_all_notifications_read/clear_all_notifications
Other
list_workspace_members- List workspace memberssearch- Global search across tasks, projects, commentslist_activities- Task activity historylist_pending_invitations/get_invitation- Invitation management
License
MIT
