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

polymarket-mcp-server

v0.1.1

Published

Polymarket MCP server — give Claude (and any MCP client) read-only access to Polymarket prediction markets: search markets, order books, price history, trader activity, and the reward-eligible markets ranked by pool-to-competition. No API keys required.

Readme

Polymarket MCP Server

A Model Context Protocol (MCP) server that gives Claude — and any MCP client — read-only access to Polymarket, the largest prediction market. Search markets, pull live order books and price history, inspect any wallet's positions, and rank the liquidity-reward markets by where you actually earn the most per dollar quoted.

No API keys. No wallet. No signup. Every tool runs against Polymarket's public APIs, so it works the second you add it to Claude.

"Claude, find me Polymarket markets paying the most liquidity rewards with the least competition."

Why this exists

Most prediction-market tooling stops at "list the markets." This server adds the thing market-makers actually care about: list_reward_markets ranks Polymarket's maker-reward programs by daily reward pool ÷ on-book competition — surfacing where resting liquidity earns the best rate, not just which markets exist.

Built on the official @modelcontextprotocol/sdk, Zod-validated, with graceful error envelopes and a short in-process cache so repeated questions in a single Claude turn stay fast.

60-second quickstart

Claude Code

claude mcp add polymarket -- npx -y polymarket-mcp-server

Claude Desktop

Add this to your claude_desktop_config.json (~/Library/Application Support/Claude/ on macOS, %APPDATA%\Claude\ on Windows):

{
  "mcpServers": {
    "polymarket": {
      "command": "npx",
      "args": ["-y", "polymarket-mcp-server"]
    }
  }
}

Restart Claude Desktop, and the tools appear under the 🔌 menu. That's it — no credentials to configure.

Cursor / other MCP clients

Point any MCP client at the stdio command npx -y polymarket-mcp-server.

Tools

| Tool | What it does | |------|--------------| | search_markets | Full-text search across events & markets → questions, prices, liquidity, volume, and token IDs. | | get_market | Full detail for one market (by ID or slug), enriched with live midpoint & spread per outcome. | | get_orderbook | Live bids/asks for an outcome token, with best bid/ask, midpoint, and spread computed. | | get_price_history | Historical probability time series with summary stats; auto-downsampled for long ranges. | | list_reward_markets | The differentiator. Markets paying maker rewards, ranked by pool ÷ competition. | | get_trader_activity | Any wallet's public positions, recent activity, or total portfolio value (whale-watching). |

Example: ranking reward markets

You:    Which Polymarket reward markets have the best pool-to-competition right now?
Claude: (calls list_reward_markets)
        1. "Will Roberto Sánchez Palomino win the 2026 Peruvian presidential election?"
           daily pool $2,000 · max spread 3.5¢ · min size 20 · competition $40.7k · score 0.049
        ...

score = dailyRewardPool / (competitionNotional + 1), where competitionNotional is the notional liquidity (Σ price·size) already resting within the scoring spread on the order book — a proxy for how crowded the reward is.

How it works

Claude / MCP client  ──stdio──▶  polymarket-mcp-server
                                       │
                 ┌─────────────────────┼─────────────────────┐
                 ▼                     ▼                     ▼
          Gamma API            CLOB API              Data API
   (markets, search)   (books, prices, rewards)  (wallet positions)
  • Read-only & credential-free — only public endpoints are called.
  • Zod-validated inputs on every tool; malformed input is rejected cleanly.
  • Graceful errors — upstream failures come back as readable messages, never raw stack traces.
  • Short TTL cache (60s) on hot queries to respect public rate limits.

Local development

git clone https://github.com/Birantx/polymarket-mcp-server.git
cd polymarket-mcp-server
npm install
npm run build
npm test          # end-to-end smoke test against the live public APIs

Run it directly over stdio:

node dist/index.js

Roadmap

  • v0.1 (this release): read-only tools, credential-free.
  • v0.2 (demand-driven): optional authenticated order placement via the CLOB client, gated behind explicit key configuration.

Disclaimer

This is an unofficial, community-built tool and is not affiliated with Polymarket. It is read-only and for informational use. Nothing here is financial advice. Prediction markets may be restricted in your jurisdiction.

License

MIT © 2026 — see LICENSE.


Keywords: Polymarket MCP server, Model Context Protocol, Claude, Anthropic, prediction markets, market making, liquidity rewards, MCP tools, AI trading research.