moltalyzer-mcp 1.7.0 → 1.7.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 +9 -4
- package/build/index.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,13 +4,13 @@ MCP server for [Moltalyzer](https://moltalyzer.xyz) — real-time intelligence f
|
|
|
4
4
|
|
|
5
5
|
Works with Claude Desktop, Claude Code, ChatGPT, Cursor, and any MCP-compatible client.
|
|
6
6
|
|
|
7
|
-
**
|
|
7
|
+
**28 tools total.** 12 free tools (no setup needed). 16 paid tools via x402 micropayments ($0.01–$1.00 per call).
|
|
8
8
|
|
|
9
9
|
## Quick Start
|
|
10
10
|
|
|
11
11
|
### Option A: Free tier (no wallet needed)
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
12 tools available immediately — latest digests for all data feeds, health check, API info, and content samples.
|
|
14
14
|
|
|
15
15
|
**Claude Code:**
|
|
16
16
|
```bash
|
|
@@ -31,7 +31,7 @@ Or add to `.claude/settings.json`:
|
|
|
31
31
|
|
|
32
32
|
### Option B: Full access via x402 micropayments
|
|
33
33
|
|
|
34
|
-
All
|
|
34
|
+
All 28 tools. Pay per call with USDC on Base Mainnet ($0.01–$1.00 per call). No subscription.
|
|
35
35
|
|
|
36
36
|
**Claude Code:**
|
|
37
37
|
```bash
|
|
@@ -85,6 +85,7 @@ To get USDC on Base: [Coinbase](https://coinbase.com), [Bridge from other chains
|
|
|
85
85
|
| `get_intelligence_sample` | Static sample Master Intelligence Digest for testing (1 req/20min) |
|
|
86
86
|
| `get_tokens_latest` | Most recent token signal (1 req/5min) |
|
|
87
87
|
| `get_polymarket_latest` | Most recent Polymarket predetermined outcome signal (1 req/5min) |
|
|
88
|
+
| `get_polymarket_pulse` | Free Polymarket teaser — top movers + digest preview (1 req/5min) |
|
|
88
89
|
| `get_pulse_latest` | Full Pulse narrative intelligence digest (1 req/5min) |
|
|
89
90
|
| `get_pulse_brief` | Current Pulse digest title, summary, top insights |
|
|
90
91
|
|
|
@@ -93,7 +94,7 @@ To get USDC on Base: [Coinbase](https://coinbase.com), [Bridge from other chains
|
|
|
93
94
|
| Tool | Description | Price |
|
|
94
95
|
|------|-------------|-------|
|
|
95
96
|
| `get_moltbook_history` | Historical hourly digests (1-24h lookback) | $0.02 |
|
|
96
|
-
| `get_moltbook_advisor` | AI content advisor — viral scoring + angles + draft for your post idea | $0.05
|
|
97
|
+
| `get_moltbook_advisor` | AI content advisor — viral scoring + angles + draft for your post idea | $0.05 |
|
|
97
98
|
|
|
98
99
|
### Master Intelligence Digest — Cross-Domain Synthesis
|
|
99
100
|
|
|
@@ -114,6 +115,10 @@ To get USDC on Base: [Coinbase](https://coinbase.com), [Bridge from other chains
|
|
|
114
115
|
|------|-------------|-------|
|
|
115
116
|
| `get_polymarket_signal` | Single signal — markets where outcome is already known by insiders | $0.01 |
|
|
116
117
|
| `get_polymarket_signals` | Batch of up to 20 signals, with polling support | $0.03 |
|
|
118
|
+
| `get_polymarket_resolving` | Markets resolving soon (1-72h) — odds, convergence, microstructure | $0.02 |
|
|
119
|
+
| `get_polymarket_whales` | Whale calibration table — per-wallet hold-to-resolution win rate + follow/fade labels | $0.05 |
|
|
120
|
+
| `get_polymarket_digest` | Full Polymarket Intelligence Digest (regenerated every 4h) | $0.10 |
|
|
121
|
+
| `get_polymarket_research` | On-demand deep-dive research for one market — thesis, risks, confidence | $1.00 |
|
|
117
122
|
|
|
118
123
|
### Tokens — Real-Time Token Intelligence
|
|
119
124
|
|
package/build/index.js
CHANGED
|
@@ -21,7 +21,7 @@ try {
|
|
|
21
21
|
pkg = JSON.parse(readFileSync(join(__dirname_resolved, "..", "package.json"), "utf-8"));
|
|
22
22
|
}
|
|
23
23
|
catch {
|
|
24
|
-
pkg = { version: "1.7.
|
|
24
|
+
pkg = { version: "1.7.1" };
|
|
25
25
|
}
|
|
26
26
|
// All logging to stderr (stdout reserved for MCP protocol)
|
|
27
27
|
const log = (...args) => console.error("[moltalyzer-mcp]", ...args);
|
|
@@ -41,11 +41,11 @@ function createServer() {
|
|
|
41
41
|
registerTokens(server, fetchWithPayment);
|
|
42
42
|
registerIntelligence(server, fetchWithPayment);
|
|
43
43
|
registerPulse(server, fetchWithPayment);
|
|
44
|
-
log(`Server started with
|
|
44
|
+
log(`Server started with 28 tools (12 free + 16 paid via x402)`);
|
|
45
45
|
}
|
|
46
46
|
else {
|
|
47
|
-
log("WARNING: EVM_PRIVATE_KEY not set — running in free-tier mode (
|
|
48
|
-
"To unlock all
|
|
47
|
+
log("WARNING: EVM_PRIVATE_KEY not set — running in free-tier mode (12 tools).\n" +
|
|
48
|
+
"To unlock all 28 tools with x402 micropayments, add your wallet private key:\n\n" +
|
|
49
49
|
JSON.stringify({
|
|
50
50
|
mcpServers: {
|
|
51
51
|
moltalyzer: {
|
|
@@ -56,7 +56,7 @@ function createServer() {
|
|
|
56
56
|
},
|
|
57
57
|
}, null, 2) +
|
|
58
58
|
"\n\nAlternatively, get a free API key at https://moltalyzer.xyz for 5 digests/day.");
|
|
59
|
-
log("Server started with
|
|
59
|
+
log("Server started with 12 free tools");
|
|
60
60
|
}
|
|
61
61
|
return server;
|
|
62
62
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "moltalyzer-mcp",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "MCP server for Moltalyzer \u2014 real-time intelligence feeds for AI agents, led by Polymarket prediction-market intelligence (calibrated whale entries, microstructure, resolving-soon timing), plus community, GitHub, and cross-source narrative feeds via x402 micropayments",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|