MCP server for Vikunja, the open-source task management app. Provides 16 tools for managing projects, tasks, and labels through Claude Code or any MCP-compatible client.
| Variable | Required | Description |
|---|---|---|
VIKUNJA_URL |
Yes | Your Vikunja instance URL (e.g., https://vikunja.example.com) |
VIKUNJA_API_TOKEN |
Yes | API token from Vikunja Settings > API Tokens |
Add to ~/.claude.json:
{
"mcpServers": {
"vikunja": {
"command": "npx",
"args": ["-y", "vikunja-mcp"],
"env": {
"VIKUNJA_URL": "https://vikunja.example.com",
"VIKUNJA_API_TOKEN": "tk_your_token_here"
}
}
}
}Or run from a local clone:
{
"mcpServers": {
"vikunja": {
"command": "node",
"args": ["/path/to/vikunja-mcp/dist/index.js"],
"env": {
"VIKUNJA_URL": "https://vikunja.example.com",
"VIKUNJA_API_TOKEN": "tk_your_token_here"
}
}
}
}- vikunja_list_projects — List all projects
- vikunja_create_project — Create a project (supports nesting via
parent_project_id) - vikunja_update_project — Update project title, description, archive status
- vikunja_delete_project — Delete a project and all its tasks
- vikunja_list_tasks — List tasks across all projects (search, filter, sort, paginate)
- vikunja_list_project_tasks — List tasks in a specific project
- vikunja_get_task — Get full task details
- vikunja_create_task — Create a task in a project
- vikunja_update_task — Update task fields
- vikunja_complete_task — Mark a task as done
- vikunja_delete_task — Delete a task
- vikunja_bulk_create_tasks — Create multiple tasks at once
- vikunja_list_labels — List all labels
- vikunja_create_label — Create a label with optional color
- vikunja_add_label_to_task — Assign a label to a task
- vikunja_remove_label_from_task — Remove a label from a task
git clone https://github.com/jrejaud/vikunja-mcp.git
cd vikunja-mcp
npm install
npm run buildThis MCP wraps the Vikunja REST API v1. A few quirks:
- Vikunja uses PUT for creation and POST for updates (opposite of typical REST)
- Listing tasks in a project requires a View ID — the MCP handles this automatically by fetching the first view
- Dates use ISO 8601 format:
2026-03-15T00:00:00Z - API tokens can be created in Vikunja under Settings > API Tokens
MIT