npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aimbitgmbh/vikunja-mcp

v1.0.0

Published

MCP server for Vikunja task management, project management, and Vikunja 2.6+ API v2

Readme

Vikunja MCP Server – MCP for Vikunja Task Management

npm version CI Vikunja 2.6+ Node.js 20.18+ License: MIT

An MCP server for Vikunja task management and project management. It connects AI assistants and other Model Context Protocol clients to Vikunja 2.6+ through the stable /api/v2 API.

Version 1.0.0 is tested with Qwen 3.8 27B for reliable MCP tool selection. The server remains model-independent and works with any standards-compliant MCP client.

Features

  • 51 focused MCP tools with consistent plural resource names
  • Tasks, projects, labels, comments, assignees, relations, and bulk updates
  • Saved filters, notifications, project views, and kanban buckets
  • Server-side search, filtering, sorting, expansion, and pagination
  • Structured JSON results plus readable text for broad client compatibility
  • Destructive task, project, label, and notification deletion disabled by default
  • Vikunja API v2 contract validation and TypeScript input validation

Requirements

  • Node.js 20.18.1 or newer
  • Vikunja 2.6.0 or newer
  • A Vikunja API token with the permissions needed for the tools you use

Create a token in Vikunja under Settings → API Tokens. Prefer the narrowest permissions that cover your workflow.

Install and configure

The package can run directly through npx:

{
  "mcpServers": {
    "vikunja": {
      "command": "npx",
      "args": ["-y", "@aimbitgmbh/[email protected]"],
      "env": {
        "VIKUNJA_URL": "https://vikunja.example.com",
        "VIKUNJA_API_TOKEN": "your-api-token"
      }
    }
  }
}

VIKUNJA_URL may be the instance root, /api/v1, or /api/v2; the server normalizes it to /api/v2.

To install it globally instead:

npm install --global @aimbitgmbh/[email protected]
vikunja-mcp

Configuration

| Variable | Required | Default | Purpose | | --- | --- | --- | --- | | VIKUNJA_URL | Yes | — | Vikunja instance URL | | VIKUNJA_API_TOKEN | Yes | — | Vikunja API token | | VERIFY_SSL | No | true | Verify the TLS certificate | | VIKUNJA_REQUEST_TIMEOUT_MS | No | 30000 | HTTP timeout in milliseconds | | ENABLE_TASK_DELETE | No | false | Allow permanent task deletion | | ENABLE_PROJECT_DELETE | No | false | Allow permanent project deletion | | ENABLE_LABEL_DELETE | No | false | Allow permanent label deletion | | ENABLE_NOTIFICATION_DELETE_ALL | No | false | Allow deletion of all notifications |

Use VERIFY_SSL=false only for a trusted development instance with a self-signed certificate.

Available MCP tools

The API uses predictable {resource}_{action} names:

  • Tasks: tasks_list, tasks_get, tasks_create, tasks_update, tasks_complete, tasks_delete, tasks_bulk_update
  • Projects: projects_list, projects_get, projects_create, projects_update, projects_archive, projects_delete, projects_duplicate
  • Labels: labels_list, labels_get, labels_create, labels_update, labels_delete, task_labels_add, task_labels_remove, task_labels_replace
  • Collaboration: task_comments_*, task_assignees_*, and task_relations_*
  • Advanced: saved_filters_*, notifications_*, project_views_*, and view_buckets_*
  • Server: vikunja_info

List tools return pagination metadata. Update tools are partial updates, so clients only need to send changed fields. Progress is exposed as progressPercent from 0 to 100 and converted to Vikunja's fractional representation.

Safety

Permanent deletions return an MCP error until their matching ENABLE_*_DELETE flag is explicitly set to true. Archiving a project and completing a task remain available as safer alternatives. Relation removal and detaching labels or assignees do not delete the related objects themselves.

Upgrading from 0.1.x

Version 1.0.0 targets Vikunja API v2 and intentionally removes API v1 compatibility. Tool names are now consistent, including:

| Before | 1.0.0 | | --- | --- | | task_get, task_create, task_update | tasks_get, tasks_create, tasks_update | | project_get, project_create | projects_get, projects_create | | comments_*, assignees_*, relations_* | task_comments_*, task_assignees_*, task_relations_* | | filter_*, views_*, buckets_* | saved_filters_*, project_views_*, view_buckets_* |

Update stored prompts or automations that refer to old tool names. Passing a former /api/v1 URL remains accepted, but requests are sent to /api/v2.

Vikunja 2.6 does not expose subscription endpoints through its API-token permission registry, so 1.0.0 does not advertise subscription write tools that would fail for the documented API-token setup. Current subscription state remains visible in task and project detail results.

Development

npm ci
cp .env.example .env
npm run check
npm run build

Additional opt-in checks:

  • npm run test:live runs a CRUD smoke test against a configured Vikunja instance and removes only records it created.
  • npm run test:qwen evaluates tool selection through an OpenAI-compatible endpoint using LLM_BASE_URL, LLM_API_KEY, and LLM_MODEL.

The sanitized Vikunja 2.6 API contract is included for reproducible endpoint checks.

Links

MIT © aimbit GmbH