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

@flowframe22/mcp-server

v0.2.6

Published

Model Context Protocol server for FlowFrame — bring prediction-market intelligence (Polymarket movers, smart-money skew, FlowFrame Pulse, political mentions) into Claude and any MCP-compatible client.

Readme

@flowframe22/mcp-server

Model Context Protocol server for FlowFrame — bring prediction‑market intelligence (Polymarket movers, smart‑money skew, FlowFrame Pulse, political mentions) into Claude and any MCP‑compatible client.

Ask Claude things like:

  • "What Polymarket markets moved most in the last 4 hours?"
  • "Where is smart money disagreeing with the market right now?"
  • "When did Powell last mention tariffs in a press conference?"
  • "What is FlowFrame saying about the 2026 midterm Senate races?"

Claude calls FlowFrame, you get an answer with sources and a link back to flowframe.xyz.

Setup

1. Get a FlowFrame API key

Free, takes 10 seconds: https://flowframe.xyz/account/api-keys

2. Add the server to Claude Desktop

Edit your Claude Desktop config:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "flowframe": {
      "command": "npx",
      "args": ["-y", "@flowframe22/mcp-server"],
      "env": {
        "FLOWFRAME_API_KEY": "flowframe_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Restart Claude Desktop. You should see a hammer icon indicating tools are available.

3. (Optional) Use with Claude Code or other MCP clients

Any client that speaks MCP over stdio works the same way — point it at npx -y @flowframe22/mcp-server with FLOWFRAME_API_KEY in the environment.

Tools

| Tool | Description | |---|---| | flowframe_ping | Health check — confirm your API key works inside Claude | | flowframe_list_pulse | Recent FlowFrame Pulse analysis items | | flowframe_get_pulse_item | Fetch a single Pulse item by slug or uuid (full content) | | flowframe_get_pulse_for_market | All FlowFrame coverage of a specific Polymarket market (by conditionId) | | flowframe_polymarket_movers | Top Polymarket markets by recent price change (1h/4h/12h/24h) | | flowframe_kalshi_movers | Top Kalshi markets by recent price change | | flowframe_smart_money_skew | Markets where the top 30 profitable traders disagree with the market | | flowframe_smart_money_skew_for_market | Per-tier breakdown for a single market | | flowframe_list_speakers | List indexed political speakers (Trump, Powell, Vance, etc.) | | flowframe_search_political_mentions | Find mentions of a keyword in political speech transcripts | | flowframe_mention_frequency | Time-series of how often a speaker mentions a keyword |

Every tool returns BOTH a human-readable text summary AND a structuredContent block containing the raw { data, meta } envelope, so downstream agent steps and other MCP clients can consume the data programmatically.

Attribution

Every tool response ends with a "Data from FlowFrame (https://flowframe.xyz)" line. Free-tier API consumers must keep this attribution visible in any UI built on top of the API. Paid tiers may suppress it. See https://flowframe.xyz/api-docs#attribution for the full policy.

Rate limits

When you hit the limit, the tool returns a clear error message including how many seconds to wait.

Configuration

| Env var | Default | Description | |---|---|---| | FLOWFRAME_API_KEY | (required) | Bearer token from /account/api-keys | | FLOWFRAME_API_BASE | https://flowframe.xyz | Override for staging / self-hosted |

Development

git clone <repo>
cd packages/mcp
npm install
npm run build
FLOWFRAME_API_KEY=flowframe_test_... node dist/index.js

The server speaks MCP over stdio — for ad-hoc testing, the MCP Inspector is the easiest way to exercise tools manually.

License

MIT — see LICENSE.