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

@flowboardlabs/mcp-server

v0.3.0

Published

FlowBoard MCP Server — lets AI tools manage projects, tasks, ideas, and releases

Downloads

602

Readme

@flowboardlabs/mcp-server

MCP (Model Context Protocol) server for FlowBoard — lets AI tools like Claude Code, Cursor, and other MCP-compatible assistants manage your projects, tasks, ideas, and releases directly from your IDE.

Setup

1. Get an API Key

Go to Settings > Integrations > API Keys in your FlowBoard workspace. Click "Generate API Key" and copy it.

2. Configure Your AI Tool

Add the following to your MCP server configuration:

macOS / Linux:

{
  "mcpServers": {
    "flowboard": {
      "command": "npx",
      "args": ["-y", "@flowboardlabs/mcp-server"],
      "env": {
        "FLOWBOARD_API_KEY": "your-api-key-here"
      }
    }
  }
}

Windows (REQUIRED — npx needs cmd wrapper):

{
  "mcpServers": {
    "flowboard": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@flowboardlabs/mcp-server"],
      "env": {
        "FLOWBOARD_API_KEY": "your-api-key-here"
      }
    }
  }
}

Important: On Windows, you must use the cmd /c wrapper. Using npx directly as the command will fail silently.

Where to put this config

  • Claude Code: .mcp.json in your project root
  • Cursor: Cursor MCP settings
  • Other tools: Check your tool's MCP configuration docs

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | FLOWBOARD_API_KEY | Yes | Your FlowBoard API key | | FLOWBOARD_API_URL | No | Custom API URL (for self-hosted instances) |

Available Tools

| Tool | Description | |------|-------------| | list_projects | List all projects in your workspace | | search_tasks | Search and filter tasks by board, status, project, assignee, type, or tags | | get_task | Get a single task with its comments | | create_task | Create a new idea or bug | | update_task | Change status, add comment, link a PR, assign someone | | delete_task | Soft-delete (trash) a task | | list_ideas | List ideas with optional filtering | | vote_idea | Toggle a vote on an idea | | list_releases | List releases in the workspace | | get_release | Get a release with its associated tasks | | get_comments | Get comments for a task | | add_comment | Add a comment to a task |

Example Prompts

Once configured, just ask naturally:

  • "Show me all open bugs in the backend project"
  • "Create a bug: login page returns 500 when email contains a plus sign"
  • "Move task abc123 to in_progress and assign it to me"
  • "What are the latest releases?"
  • "Add a comment to task xyz: Fixed in PR #42"

Requirements

  • Node.js >= 18
  • A FlowBoard workspace with an API key

License

MIT