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

flowspec-mcp

v5.5.1

Published

MCP server for FlowSpec — exposes project specs to Claude Code

Downloads

1,734

Readme

flowspec-mcp

MCP (Model Context Protocol) server for FlowSpec — exposes project specifications to Claude Code and other MCP-compatible AI tools.

Quick Start

Add to your ~/.claude.json:

{
  "mcpServers": {
    "flowspec": {
      "command": "npx",
      "args": ["-y", "flowspec-mcp"],
      "env": {
        "FLOWSPEC_MODE": "cloud",
        "DATABASE_URL": "your-neon-connection-string",
        "FLOWSPEC_USER_ID": "your-clerk-user-id"
      }
    }
  }
}

Local Mode (with FlowSpec Desktop)

{
  "mcpServers": {
    "flowspec": {
      "command": "npx",
      "args": ["-y", "flowspec-mcp"],
      "env": {
        "FLOWSPEC_MODE": "local"
      }
    }
  }
}

Local mode connects to the FlowSpec desktop server at http://localhost:3456.

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | FLOWSPEC_MODE | No | cloud | cloud for direct Neon SQL, local for desktop server HTTP | | DATABASE_URL | Cloud mode | — | Neon Postgres connection string | | FLOWSPEC_USER_ID | Cloud mode | — | Clerk user ID — find yours at flowspec.app/account | | FLOWSPEC_LOCAL_URL | No | http://localhost:3456 | Desktop server URL (local mode) |

Available Tools

Read Tools

  • flowspec_list_projects — List all projects with names and dates
  • flowspec_get_json — Get full JSON spec for a project (optimised for Claude Code)
  • flowspec_get_project — Get raw canvas_state JSON
  • flowspec_search_nodes — Search nodes by label across all projects
  • flowspec_get_screen_context — Get screen/region/element structure

Write Tools

  • flowspec_create_project — Create a new project
  • flowspec_update_project — Update project name or canvas state
  • flowspec_delete_project — Delete a project
  • flowspec_create_node — Add a node (datapoint, component, transform, table)
  • flowspec_update_node — Update node data or position
  • flowspec_delete_node — Remove a node and connected edges
  • flowspec_create_edge — Connect two nodes with an edge type
  • flowspec_delete_edge — Remove an edge
  • flowspec_analyse_project — Run orphan node and duplicate label analysis

Development

npm install
npm run build
node dist/index.js

Notes

  • MCP SDK pinned to 1.12.1 due to zod v4 compatibility constraints in later versions
  • Node.js >= 18.0.0 required

License

MIT