@spfunctions/prediction-market-mcp 2.0.0

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/LICENSE ADDED
@@ -0,0 +1,5 @@
1
+ MIT License
2
+ Copyright (c) 2026 SimpleFunctions
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED.
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # prediction-market-mcp
2
+
3
+ MCP server for prediction market data. Gives Claude Desktop, Cursor, VS Code Copilot, and any MCP client access to real-time prediction market intelligence.
4
+
5
+ [![npm](https://img.shields.io/npm/v/prediction-market-mcp)](https://www.npmjs.com/package/prediction-market-mcp)
6
+
7
+ ## Quick Start
8
+ ```bash
9
+ npx prediction-market-mcp
10
+ ```
11
+
12
+ ## Claude Desktop
13
+ Add to `claude_desktop_config.json`:
14
+ ```json
15
+ {
16
+ "mcpServers": {
17
+ "prediction-markets": {
18
+ "command": "npx",
19
+ "args": ["prediction-market-mcp"]
20
+ }
21
+ }
22
+ }
23
+ ```
24
+
25
+ ## Cursor
26
+ Add to `.cursor/mcp.json`:
27
+ ```json
28
+ {
29
+ "mcpServers": {
30
+ "prediction-markets": {
31
+ "command": "npx",
32
+ "args": ["prediction-market-mcp"]
33
+ }
34
+ }
35
+ }
36
+ ```
37
+
38
+ ## Tools
39
+ | Tool | Description |
40
+ |------|-------------|
41
+ | `get_world_state` | Full world state (~800 tokens) |
42
+ | `get_uncertainty_index` | Four-signal uncertainty index |
43
+ | `get_market_detail` | Single market with orderbook |
44
+ | `get_market_edges` | Actionable mispricings |
45
+
46
+ ## License
47
+ MIT — [SimpleFunctions](https://simplefunctions.dev)