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

@ugend/polymarket-signals-mcp

v1.0.0

Published

MCP server for Polymarket prediction market signal scanning — fade opportunities, arb gaps, resolution calendars

Readme

Polymarket Signals MCP

Scan Polymarket prediction markets for trading signals — fade opportunities, arbitrage gaps, and resolution calendars. Works out of the box with no API keys required.

What it does

| Tool | Description | |------|-------------| | scan_fade_opportunities | Rank all active markets by fade score — find where crowds over-bet one side | | scan_arb_gaps | Find YES+NO combined prices below $1.00 (theoretical free money) | | get_resolution_calendar | Markets resolving in the next 1-48 hours with late-stage signals | | get_market_detail | Deep dive: prices, order book snapshot, signals for one market | | scan_by_category | Filter signals by category (crypto, politics, sports, macro, etc.) | | get_market_stats | Daily briefing: total markets, volume, signal count |

The Edge

Fade strategy: When a market prices YES at $0.80 and NO at $0.15, the crowd is over-confident in YES. The combined price ($0.95) is below $1.00, and the crowd bias creates edge for betting NO. This server quantifies that edge with a 0-100 score.

Arb gaps: YES + NO < $1.00 means you can buy both sides and collect the difference at resolution. Taker fee is ~1.56% per side (3.12% round trip), so only gaps above 3.12% are profitable. This server finds them automatically.

Resolution calendar: Markets in their final 1-4 hours often see momentum chasers push prices past fair value, creating mean-reversion opportunities.

Fade Score Interpretation

| Score | Signal | |-------|--------| | 80-100 | Strong — crowd significantly one-sided, strong edge for other side | | 60-79 | Moderate — worth monitoring | | 40-59 | Weak — possible edge but verify with news | | < 40 | No signal |

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "polymarket-signals": {
      "command": "node",
      "args": ["/path/to/polymarket-signals-mcp/index.js"]
    }
  }
}

Claude Code (CLI)

claude mcp add polymarket-signals node /path/to/polymarket-signals-mcp/index.js

Requirements

  • Node.js 18+
  • No API keys required — uses Polymarket's public CLOB API

Quick start

git clone <repo>
cd polymarket-signals-mcp
npm install
node index.js  # MCP server runs on stdio

Example prompts

Scan for fade opportunities in crypto markets with score above 70
Find arb gaps above 3% on Polymarket
What markets are resolving in the next 6 hours?
Get me a detailed breakdown of the BTC-100k market

Limitations

  • Fade signals are based on crowd bias detection — not fundamental analysis
  • Taker fees (1.56%/side) make small arb gaps unprofitable — use maker orders where possible
  • Past performance of individual signals not guaranteed
  • Always verify with independent research before trading

License

MIT