graph-polymarket-mcp 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,12 +2,11 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/graph-polymarket-mcp)](https://www.npmjs.com/package/graph-polymarket-mcp)
4
4
  [![MCP Registry](https://img.shields.io/badge/MCP%20Registry-published-blue)](https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.PaulieB14/graph-polymarket-mcp)
5
- [![Glama](https://glama.ai/mcp/servers/@PaulieB14/graph-polymarket-mcp/badge)](https://glama.ai/mcp/servers/@PaulieB14/graph-polymarket-mcp)
6
5
  [![smithery badge](https://smithery.ai/badge/paulieb14/graph-polymarket-mcp)](https://smithery.ai/servers/paulieb14/graph-polymarket-mcp)
7
6
 
8
7
  MCP server for querying [Polymarket](https://polymarket.com/) prediction market data via [The Graph](https://thegraph.com/) subgraphs.
9
8
 
10
- Exposes 9 tools that AI agents (Claude, Cursor, etc.) can use to query market data, trader P&L, positions, activity, and orderbook trades.
9
+ Exposes 12 tools that AI agents (Claude, Cursor, etc.) can use to query market data, trader P&L, positions, activity, and orderbook trades.
11
10
 
12
11
  > Published to the [MCP Registry](https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.PaulieB14/graph-polymarket-mcp) as `io.github.PaulieB14/graph-polymarket-mcp`
13
12
 
@@ -78,12 +77,15 @@ Use the stdio transport with `npx graph-polymarket-mcp` as the command, passing
78
77
 
79
78
  | Tool | Description | Subgraph |
80
79
  |------|-------------|----------|
81
- | `get_market_data` | Get market/condition data with outcomes and volumes | Main |
82
- | `get_account_pnl` | Get a trader's P&L and performance metrics | Beefy P&L |
83
- | `get_user_positions` | Get a user's current positions | Slimmed P&L |
80
+ | `get_market_data` | Get market/condition data with outcomes and resolution status | Main |
81
+ | `get_global_stats` | Get platform stats: market counts + real volume/fees/trades | Main + Orderbook |
82
+ | `get_account_pnl` | Get a trader's P&L and performance metrics (winRate, profitFactor, maxDrawdown) | Beefy P&L |
83
+ | `get_top_traders` | Leaderboard of top traders ranked by PnL, winRate, volume, or profitFactor | Beefy P&L |
84
+ | `get_daily_stats` | Daily volume, fees, trader counts, and market activity (1–90 days) | Beefy P&L |
85
+ | `get_market_positions` | Top holders for a specific outcome token with their P&L | Beefy P&L |
86
+ | `get_user_positions` | Get a user's current token positions | Slimmed P&L |
84
87
  | `get_recent_activity` | Get recent splits, merges, and redemptions | Activity |
85
- | `get_orderbook_trades` | Get recent order fills | Orderbook |
86
- | `get_global_stats` | Get aggregate platform statistics | Main |
88
+ | `get_orderbook_trades` | Get recent order fills with maker/taker filtering | Orderbook |
87
89
 
88
90
  ## Subgraphs
89
91
 
package/build/index.js CHANGED
@@ -6,7 +6,7 @@ import { querySubgraph } from "./graphClient.js";
6
6
  import { SUBGRAPHS, SUBGRAPH_NAMES } from "./subgraphs.js";
7
7
  const server = new McpServer({
8
8
  name: "graph-polymarket-mcp",
9
- version: "1.2.0",
9
+ version: "1.2.1",
10
10
  });
11
11
  // Helper to format tool responses
12
12
  function textResult(data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graph-polymarket-mcp",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "mcpName": "io.github.PaulieB14/graph-polymarket-mcp",
5
5
  "description": "MCP server for querying Polymarket data via The Graph subgraphs",
6
6
  "type": "module",