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

kanbanflow-mcp-server

v1.0.3

Published

Model Context Protocol (MCP) server for KanbanFlow - manage boards, tasks, and workflows from Cursor/Claude

Downloads

16

Readme

KanbanFlow MCP Server

A Model Context Protocol (MCP) server for KanbanFlow - manage your boards, tasks, and workflows directly from Cursor/Claude.

🚀 Quick Start (Recommended)

Option 1: One-Command Setup ✨

# Install globally
npm install -g kanbanflow-mcp-server

# Auto-setup in any project
cd your-project
kanbanflow-mcp-server --setup

Enter your KanbanFlow API token when prompted, restart Cursor, and you're done! 🎉

Option 2: Developer Setup 🛠️

# Clone and build
git clone <this-repo>
cd kanbanflow-mcp-server
npm install && npm run build

# Auto-setup (works here too!)
kanbanflow-mcp-server --setup

Or manually add to your .cursor/mcp.json:

{
  "mcpServers": {
    "kanban-flow": {
      "command": "node",
      "args": ["/path/to/kanbanflow-mcp-server/build/index.js"],
      "env": {
        "KANBAN_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

🔑 Get Your API Token

Get your KanbanFlow API token from kanbanflow.com/api

🛠️ Available Tools

Board Management

  • get-board - Get your board structure and column IDs
  • get-all-tasks - See all tasks across all columns

Task Operations

  • create-task - Create new tasks
  • get-tasks - Get tasks from a specific column
  • get-task-details - Get detailed task information
  • update-task - Update task properties (name, column, color, etc.)

Subtasks

  • add-subtask - Add a subtask to any task
  • update-subtask-by-position - Update subtasks by position
  • add-subtasks - Add multiple subtasks at once
  • create-task-with-subtasks - Create task + subtasks in one go

Labels & Organization

  • add-label - Add labels to tasks
  • update-label - Update existing labels
  • set-task-due-date - Set due dates
  • update-custom-field - Update custom field values

Comments

  • add-comment - Add comments to tasks
  • update-comment - Update existing comments

📝 Usage Examples

Ask Claude things like:

  • "Show me my board structure"
  • "Create a task called 'Fix bug' in the To-Do column"
  • "Add subtasks to task T123: Write tests, Review code, Deploy"
  • "Move task T456 to Done column"
  • "What tasks are in my In Progress column?"

🔧 Development

# Build
npm run build

# Test (requires KANBAN_API_TOKEN env var)
npm run dev

📄 License

MIT License - see LICENSE file.

🤝 Contributing

  1. Fork the repo
  2. Create your feature branch
  3. Make your changes
  4. Test with your KanbanFlow board
  5. Submit a pull request

Need help? Open an issue!