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

@epodivilov/vikunja-mcp

v0.1.0

Published

Lean, identifier-native MCP server for Vikunja: compact task payloads and project keys like INFRA-41 instead of opaque global IDs.

Readme

vikunja-mcp

A lean, identifier-native Model Context Protocol server for Vikunja.

It exists because the existing Vikunja MCP servers share three problems:

  • Token bloat — they return raw Vikunja API objects. Listing a single project can run to ~95k characters and blow an agent's context budget.
  • Opaque identity — they address tasks by the global numeric id, while the Vikunja UI shows a project-scoped key (INFRA-41). Agents and humans end up talking about different numbers.
  • Coarse permissions — they expose one mega-tool with a subcommand argument, so an MCP client cannot allow read operations without also allowing writes and deletes.

vikunja-mcp fixes all three: compact payloads, tasks addressed by their project key (INFRA-41), and one tool per operation split cleanly into read and write.

Install & configure

npx @epodivilov/vikunja-mcp

Configuration is environment-only:

| var | required | default | |-----|----------|---------| | VIKUNJA_API_TOKEN | yes | — | | VIKUNJA_URL | no | http://localhost:3456/api/v1 |

VIKUNJA_URL is optional only while it stays unset. Set to an empty value, to something that is not a URL, to a scheme other than http/https, or to a URL carrying a query string or fragment, the server refuses to start and names what was wrong — rather than failing at the first request.

Register it (Claude Code example):

{
  "mcpServers": {
    "vikunja": {
      "command": "npx",
      "args": ["-y", "@epodivilov/vikunja-mcp"],
      "env": {
        "VIKUNJA_URL": "http://localhost:3456/api/v1",
        "VIKUNJA_API_TOKEN": "..."
      }
    }
  }
}

Tools

Read (safe to allow-list):

  • vikunja_list_projects
  • vikunja_list_tasks — filter by project / done / free-text search
  • vikunja_get_task — by key (INFRA-41) or explicit global id; includes the task's relations
  • vikunja_list_labels
  • vikunja_get_board — a project's kanban board as ordered columns of lean tasks, plus its mode
  • vikunja_list_members — the users a project's tasks can be assigned to
  • vikunja_list_comments — a task's comments, bodies as markdown and the author as a username
  • vikunja_get_comment — one comment, by task plus its numeric commentId

Write (keep gated):

  • vikunja_create_task — optionally assigned to people as it is created
  • vikunja_update_task
  • vikunja_bulk_update_tasks — set the same done / priority / due across many tasks in one transactional write; refuses tasks carrying assignees, reminders or your favourite flag
  • vikunja_complete_task
  • vikunja_comment_task — add a comment, body in markdown
  • vikunja_update_comment — replace an existing comment's body; Vikunja permits this only to the comment's own author, whatever your project permissions
  • vikunja_move_task — move a task into a named column on a manual-bucket board
  • vikunja_label_task — add and/or remove labels on a task, leaving the rest alone
  • vikunja_set_task_labels — replace a task's whole label set; an empty list clears it
  • vikunja_create_label — create a label; a title another label already holds is refused
  • vikunja_update_label — rename a label and/or change its colour, instance-wide
  • vikunja_assign_task — assign users by username, keeping whoever is already assigned
  • vikunja_unassign_task — remove users from a task
  • vikunja_relate_tasks — record that one task blocks, precedes, duplicates or parents another
  • vikunja_unrelate_tasks — remove one such relation
  • vikunja_delete_task
  • vikunja_delete_comment — author-only as well
  • vikunja_delete_label — deletes the label itself, taking it off every task that carries it; refused while any task does unless force is passed

Because each operation is its own tool, you can grant read access permanently while still reviewing every write:

{
  "permissions": {
    "allow": [
      "mcp__vikunja__vikunja_list_projects",
      "mcp__vikunja__vikunja_list_tasks",
      "mcp__vikunja__vikunja_get_task",
      "mcp__vikunja__vikunja_list_labels",
      "mcp__vikunja__vikunja_get_board",
      "mcp__vikunja__vikunja_list_members",
      "mcp__vikunja__vikunja_list_comments",
      "mcp__vikunja__vikunja_get_comment"
    ]
  }
}

Privacy

The server makes network requests to VIKUNJA_URL and nowhere else — no telemetry, no third-party calls. It is intentionally small so you can read every line that touches your token.

Development

npm install
npm run check   # biome + tsc + tests
npm run build

The published package runs on Node >= 22 (engines.node) — that is plain compiled JS in dist. Working on the source needs Node >= 22.18 (devEngines.runtime), because npm test runs the TypeScript suite through Node's built-in type stripping, which is only enabled by default from 22.18 onward. On anything older the suite fails with ERR_UNKNOWN_FILE_EXTENSION.

See CLAUDE.md for architecture and conventions.

License

MIT