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

flowboard-mcp-server

v0.1.0

Published

MCP server for FlowBoard — six board tools (get_board, search_cards, create_card_from_text, etc.) for Cursor, Claude Code, and Claude Desktop over personal API tokens.

Readme

flowboard-mcp-server

npm license

A stdio Model Context Protocol server that exposes a FlowBoard Kanban board to AI agents like Cursor, Claude Code, and Claude Desktop.

The server talks to FlowBoard over its public HTTP API with a personal API token — no database access, no shared secrets, the same permissions you have in the browser.

Tools

| Tool | What it does | |------|--------------| | get_board | Full board snapshot (columns, cards, labels, members) | | get_board_summary | Aggregates: counts by column / priority, urgent card list | | search_cards | Filter by title text, priority, assignee, labels | | create_card | Create a card in a column; optional description, assignee, labels | | create_card_from_text | Natural language → card (parser-backed Smart Add, server-side) | | move_card | Move a card between columns; auto-appends if newOrderIndex is omitted |

Before you install

You need two things from the live FlowBoard app:

  1. An API token. Sign in → user menu → API tokensCreate token. The plaintext fb_... is shown once; copy it now.
  2. A board UUID. Open a board; copy the UUID from the URL: /board/<uuid>.

That's it — no clone, no install, no database.

Cursor

Paste this into .cursor/mcp.json (project) or your user-level Cursor MCP config:

{
  "mcpServers": {
    "flowboard": {
      "command": "npx",
      "args": ["-y", "flowboard-mcp-server"],
      "env": {
        "FLOWBOARD_API_TOKEN": "fb_...",
        "FLOWBOARD_BOARD_ID": "your-board-uuid"
      }
    }
  }
}

Restart Cursor (or refresh MCP from Settings → MCP) and the flowboard server appears with its tools. The server defaults to https://flowboard-kapp.vercel.app, so you don't need FLOWBOARD_BASE_URL unless you're running your own backend.

Claude Code / Claude Desktop

Same env vars; same npx -y flowboard-mcp-server command. See your client's MCP config docs for the exact JSON shape.

Environment variables

| Variable | Required | Default | |----------|----------|---------| | FLOWBOARD_API_TOKEN | Yes | — | | FLOWBOARD_BOARD_ID | No* | — | | FLOWBOARD_BASE_URL | No | https://flowboard-kapp.vercel.app |

*If unset, every tool call must include boardId as an argument.

Architecture

┌──────────┐    stdio   ┌──────────────┐    HTTP + Bearer    ┌──────────────┐
│ Cursor / │ ─────────▶ │ this package │ ─────────────────▶ │ FlowBoard    │
│ Claude   │            │ McpServer    │                     │ Next.js API  │
└──────────┘            └──────────────┘                     └──────┬───────┘
                                                                    │
                                                              ┌─────▼──────┐
                                                              │ PostgreSQL │
                                                              └────────────┘

The MCP package has no Prisma, no Supabase keys, and no awareness of the database. It only knows how to call the FlowBoard HTTP API with your Bearer token.

Advanced: pointing at your own FlowBoard

If you're self-hosting FlowBoard or running it locally, set FLOWBOARD_BASE_URL to override the default:

"env": {
  "FLOWBOARD_BASE_URL": "http://localhost:3000",
  "FLOWBOARD_API_TOKEN": "fb_...",
  "FLOWBOARD_BOARD_ID": "your-board-uuid"
}

To test a local build of this package in Cursor without publishing, clone the FlowBoard repo and point args at the absolute dist/index.js:

"command": "node",
"args": ["/absolute/path/to/flowboard/packages/mcp-server/dist/index.js"]

Troubleshooting

| Symptom | Cause | |---------|-------| | 401 UNAUTHORIZED | Token revoked, expired, or wrong; create a new one in the FlowBoard UI | | 404 Board not found | Wrong FLOWBOARD_BOARD_ID or your user has no access to that board | | AI_UNAVAILABLE (only for create_card_from_text) | GROQ_API_KEY not set on the FlowBoard server (the live demo has it set) | | MCP server exits immediately | Run the same command in a terminal; stderr shows the missing env var |

License

MIT © 2026 Ayush