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

@fastman/mcp-kaneo

v1.4.0

Published

MCP server for Kaneo task management API

Readme

mcp-kaneo

MCP server for Kaneo task management API. Lets your AI coding assistant manage tasks, projects, labels, and comments in Kaneo.

Features

  • Tasks: Create, read, update, delete tasks
  • Projects: List and manage projects
  • Labels: Create, update, delete labels; attach/detach from tasks
  • Comments: Add and list comments on tasks
  • Search: Search tasks, projects, and workspaces
  • Workspaces: List workspaces and organizations
  • Task Relations: Create subtask relations (links to Kaneo's native subtasks)

Requirements

Installation

Using npx (recommended)

npx @fastman/mcp-kaneo

Using npm

npm install -g @fastman/mcp-kaneo
npx @fastman/mcp-kaneo

Configuration

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | KANEO_BASE_URL | Yes | Kaneo API URL (e.g., https://your-kaneo-instance.com/api) | | KANEO_TOKEN | Yes | Kaneo API token |

OpenCode

Add to your ~/.config/opencode/opencode.json:

{
  "mcp": {
    "kaneo": {
      "type": "local",
      "command": ["npx", "-y", "@fastman/mcp-kaneo"],
      "environment": {
        "KANEO_BASE_URL": "https://your-kaneo-instance.com/api",
        "KANEO_TOKEN": "${KANEO_TOKEN}"
      }
    }
  }
}

Or for local development:

{
  "mcp": {
    "kaneo": {
      "type": "local",
      "command": ["node", "/path/to/mcp-kaneo/dist/index.js"],
      "environment": {
        "KANEO_BASE_URL": "https://your-kaneo-instance.com/api",
        "KANEO_TOKEN": "your-token"
      }
    }
  }
}

Claude Code

claude mcp add kaneo --scope user npx @fastman/mcp-kaneo

Cline

Add to your MCP settings:

{
  "mcpServers": {
    "kaneo": {
      "command": "npx",
      "args": ["-y", "@fastman/mcp-kaneo"]
    }
  }
}

Cursor

Go to Cursor SettingsMCPNew MCP Server:

{
  "command": "npx",
  "args": ["-y", "@fastman/mcp-kaneo"]
}

Tools

Workspaces

  • kaneo_list_workspaces - List all accessible workspaces

Projects

  • kaneo_list_projects - List projects in a workspace
  • kaneo_get_project - Get project details
  • kaneo_create_project - Create a new project

Tasks

  • kaneo_create_task - Create a new task
  • kaneo_get_task - Get task details
  • kaneo_update_task_title - Update task title
  • kaneo_update_task_description - Update task description
  • kaneo_update_task_status - Update task status (move between columns)
  • kaneo_update_task_priority - Update task priority
  • kaneo_update_task_assignee - Update task assignee
  • kaneo_update_task_due_date - Update task due date
  • kaneo_delete_task - Delete a task
  • kaneo_list_tasks - List tasks in a project
  • kaneo_create_subtask - Create a subtask linked to a parent (native Kaneo subtask)
  • kaneo_list_subtasks - List subtasks for a parent task (via Task Relations)

Labels

  • kaneo_list_labels - List workspace labels
  • kaneo_create_label - Create a new label
  • kaneo_update_label - Update label name/color
  • kaneo_delete_label - Delete a label
  • kaneo_attach_label - Attach label to task
  • kaneo_detach_label - Detach label from task
  • kaneo_list_task_labels - List labels on a task

Comments

  • kaneo_add_comment - Add comment to task
  • kaneo_list_comments - List comments on task

Search

  • kaneo_search - Search tasks, projects, workspaces

Task Relations

  • kaneo_create_task_relation - Create a relation between tasks (subtask, blocks, related)
  • kaneo_list_task_relations - List all relations for a task
  • kaneo_delete_task_relation - Delete a task relation

Usage Examples

Create a task

Create a task in kaneo called "Fix login bug" with high priority

Create a subtask

Create a subtask "Fix the login validation" for parent task #123

List subtasks

List all subtasks for task #123

Add a label

Create a label called "bug" with color #ef4444 and attach it to the task

Update task status

Move the task "Fix login bug" to in-progress

Development

# Install dependencies
npm install

# Build
npm run build

# Test
npm test

# Run locally
npm start

License

MIT