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

@cruglobal/flightdeck-mcp-server

v0.1.0

Published

Model Context Protocol server for Flightdeck — gives AI clients (Claude, Cursor, …) tools for projects, work items, cycles, modules and comments over the Flightdeck REST API.

Readme

Flightdeck MCP Server

A Model Context Protocol server that gives AI clients (Claude Code/Desktop, Cursor, …) first-class access to a Flightdeck instance — listing and creating projects, work items, cycles, modules and comments.

It's a thin client over Flightdeck's public REST API (/api/v1): it speaks MCP over stdio to the AI client and HTTPS to your Flightdeck install, using a personal access token. It never touches the app internals — the public API is its entire surface.

Prerequisites

  • Node.js ≥ 18
  • A Flightdeck install with the public API enabled (FD-21+)
  • A personal access token: in Flightdeck, go to Settings → API tokens, create one, and copy the fd_pat_… value (shown only once). The token is scoped to a single workspace and acts as you.

Configuration

Two environment variables:

| Variable | Required | Example | | ----------------------- | -------- | -------------------------------- | | FLIGHTDECK_BASE_URL | yes | https://flightdeck.example.com | | FLIGHTDECK_API_TOKEN | yes | fd_pat_xxxxxxxx… |

Use with Claude Code

claude mcp add flightdeck \
  --env FLIGHTDECK_BASE_URL=https://flightdeck.example.com \
  --env FLIGHTDECK_API_TOKEN=fd_pat_xxxxxxxx \
  -- npx -y @cruglobal/flightdeck-mcp-server

Use with Claude Desktop / Cursor

Add to your MCP config (claude_desktop_config.json or .cursor/mcp.json):

{
  "mcpServers": {
    "flightdeck": {
      "command": "npx",
      "args": ["-y", "@cruglobal/flightdeck-mcp-server"],
      "env": {
        "FLIGHTDECK_BASE_URL": "https://flightdeck.example.com",
        "FLIGHTDECK_API_TOKEN": "fd_pat_xxxxxxxx"
      }
    }
  }
}

Tools

| Tool | Description | | ------------------- | ----------------------------------------------------------------- | | get_me | Who/what the token maps to (user, workspace, token). Health check. | | list_projects | List projects in the workspace. | | get_project | Retrieve a project by id. | | list_work_items | List a project's work items (summary shape). | | get_work_item | Retrieve a work item by id (full shape). | | create_work_item | Create a work item in a project (title required). | | update_work_item | Update a work item; only supplied fields change. | | delete_work_item | Delete a work item by id. | | list_cycles | List a project's cycles. | | get_cycle | Retrieve a cycle by id. | | list_modules | List a project's modules. | | get_module | Retrieve a module by id. | | list_comments | List a work item's comments. | | create_comment | Add a comment to a work item. |

List tools accept page and per_page (max 100).

Writes are tenant-safe on the server: any referenced state, cycle, parent or label must belong to the work item's own project, and assignees must be members of the workspace — otherwise the API rejects the request.

Development

npm install
npm run build      # compile TypeScript to dist/
npm run watch      # recompile on change
FLIGHTDECK_BASE_URL=… FLIGHTDECK_API_TOKEN=… npm start

License

MIT