netintel-mcp 1.1.42 → 1.1.44

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
@@ -1,6 +1,6 @@
1
1
  # netintel-mcp
2
2
 
3
- MCP server for NetIntel — 111 network intelligence tools for AI agents.
3
+ MCP server for NetIntel — 113 network intelligence tools for AI agents.
4
4
  DNS, SSL, WHOIS, email security, cloud fingerprinting, OSINT and more.
5
5
  Pay-per-call via x402 — the NetIntel API accepts USDC on Base or Solana; this MCP server pays on Base. No API keys needed — just a wallet with USDC.
6
6
 
@@ -31,7 +31,7 @@ Or add manually to your Claude Desktop config:
31
31
 
32
32
  ## Tools
33
33
 
34
- 111 pay-per-call tools across DNS, SSL/TLS, WHOIS & domains, email security, IP intelligence, web & content, OSINT, AI text processing, and bundled reports.
34
+ 113 pay-per-call tools across DNS, SSL/TLS, WHOIS & domains, email security, IP intelligence, web & content, OSINT, AI text processing, and bundled reports.
35
35
 
36
36
  | Tool | Description | Price |
37
37
  |------|-------------|-------|
@@ -146,6 +146,8 @@ Or add manually to your Claude Desktop config:
146
146
  | netintel_web_fetch | Fetch any URL and get the raw body back — JSON parsed, everything else… | $0.003 |
147
147
  | netintel_weather_current | Live weather + 3-day forecast for any city or lat/lon worldwide —… | $0.002 |
148
148
  | netintel_weather_forecast | Multi-day weather forecast for any city or lat/lon worldwide — up to 16… | $0.003 |
149
+ | netintel_prediction_markets | Live prediction-market odds from Polymarket — list the top active… | $0.005 |
150
+ | netintel_prediction_market | Full detail for ONE Polymarket prediction market by id or slug —… | $0.003 |
149
151
 
150
152
  ## Payment
151
153
  All tools pay automatically via x402 in USDC on Base mainnet.
package/dist/index.js CHANGED
@@ -1151,6 +1151,26 @@ function registerTools(server, api) {
1151
1151
  return err(e);
1152
1152
  }
1153
1153
  });
1154
+ // 113. Prediction (POST)
1155
+ server.tool("netintel_prediction_markets", "Live prediction-market odds from Polymarket — list the top active markets by volume, or search by keyword. Each result has the question, outcomes with current prices (implied probabilities), 24h/total volume, liquidity, and resolution…", { query: z.string().optional(), limit: z.number().optional(), status: z.string().optional() }, async ({ query, limit, status }) => {
1156
+ try {
1157
+ const res = await api.post("/prediction/markets", { query, limit, status });
1158
+ return ok(res.data);
1159
+ }
1160
+ catch (e) {
1161
+ return err(e);
1162
+ }
1163
+ });
1164
+ // 114. Prediction (POST)
1165
+ server.tool("netintel_prediction_market", "Full detail for ONE Polymarket prediction market by id or slug — question, description, every outcome with its current price (implied probability), volume, liquidity, open/close dates, resolution source, category, and status. No API key…", { id: z.string().optional(), slug: z.string().optional() }, async ({ id, slug }) => {
1166
+ try {
1167
+ const res = await api.post("/prediction/market", { id, slug });
1168
+ return ok(res.data);
1169
+ }
1170
+ catch (e) {
1171
+ return err(e);
1172
+ }
1173
+ });
1154
1174
  }
1155
1175
  async function main() {
1156
1176
  const api = await createClient();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netintel-mcp",
3
- "version": "1.1.42",
3
+ "version": "1.1.44",
4
4
  "mcpName": "io.github.kjgueye/netintel-mcp",
5
5
  "repository": {
6
6
  "type": "git",