MCP Catalogs
Home

vikunja-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

vikunja-mcp
by democratize-technology
filesystem
by modelcontextprotocol
Stars★ 69★ 85,748
30d uses
Score4777
Official
Categories
ProductivityDeveloper ToolsOther
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

vikunja-mcp · Summary

MCP server for Vikunja task management with comprehensive CRUD operations, authentication, and architectural improvements.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

vikunja-mcp · Use cases

  • AI assistants managing task workflows and priorities in Vikunja
  • Automated project status reporting and updates through AI integration
  • Bulk task import and organization from external systems
  • Automated team task assignment and reassignment based on availability

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

vikunja-mcp · Install

Installation

Option 1: Install from NPM (Recommended)

The easiest way to use vikunja-mcp is through npx in your Claude Desktop or other MCP-compatible client configuration:

{
  "vikunja": {
    "command": "npx",
    "args": ["-y", "@democratize-technology/vikunja-mcp"],
    "env": {
      "VIKUNJA_URL": "https://your-vikunja-instance.com/api/v1",
      "VIKUNJA_API_TOKEN": "your-api-token"
    }
  }
}

Option 2: Local Development

For development or customization:

git clone https://github.com/democratize-technology/vikunja-mcp.git
cd vikunja-mcp
npm install
npm run build

Then configure your MCP client with the built JavaScript file.

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.