netintel-mcp 1.1.40 → 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 +6 -2
- package/dist/index.js +40 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# netintel-mcp
|
|
2
2
|
|
|
3
|
-
MCP server for NetIntel —
|
|
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
|
-
|
|
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
|
|------|-------------|-------|
|
|
@@ -144,6 +144,10 @@ Or add manually to your Claude Desktop config:
|
|
|
144
144
|
| netintel_iban_validate | Validate any IBAN offline — mod-97 check digits, per-country structure… | $0.005 |
|
|
145
145
|
| netintel_market_snapshot | One-call market briefing for agents — BTC/ETH/SOL spot + 24h moves… | $0.05 |
|
|
146
146
|
| netintel_web_fetch | Fetch any URL and get the raw body back — JSON parsed, everything else… | $0.003 |
|
|
147
|
+
| netintel_weather_current | Live weather + 3-day forecast for any city or lat/lon worldwide —… | $0.002 |
|
|
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 |
|
|
147
151
|
|
|
148
152
|
## Payment
|
|
149
153
|
All tools pay automatically via x402 in USDC on Base mainnet.
|
package/dist/index.js
CHANGED
|
@@ -1131,6 +1131,46 @@ function registerTools(server, api) {
|
|
|
1131
1131
|
return err(e);
|
|
1132
1132
|
}
|
|
1133
1133
|
});
|
|
1134
|
+
// 111. Weather (POST)
|
|
1135
|
+
server.tool("netintel_weather_current", "Live weather + 3-day forecast for any city or lat/lon worldwide — temperature, feels-like, humidity, wind, precipitation, cloud cover, and a plain-language condition. Give a city name (geocoded for you) or coordinates. No API key, metric…", { city: z.string().optional(), latitude: z.number().optional(), longitude: z.number().optional(), units: z.string().optional() }, async ({ city, latitude, longitude, units }) => {
|
|
1136
|
+
try {
|
|
1137
|
+
const res = await api.post("/weather/current", { city, latitude, longitude, units });
|
|
1138
|
+
return ok(res.data);
|
|
1139
|
+
}
|
|
1140
|
+
catch (e) {
|
|
1141
|
+
return err(e);
|
|
1142
|
+
}
|
|
1143
|
+
});
|
|
1144
|
+
// 112. Weather (POST)
|
|
1145
|
+
server.tool("netintel_weather_forecast", "Multi-day weather forecast for any city or lat/lon worldwide — up to 16 days of daily highs/lows, precipitation & probability, UV, sunrise/sunset, wind, and plain-language conditions, plus optional next-24h hourly. Give a city name…", { city: z.string().optional(), latitude: z.number().optional(), longitude: z.number().optional(), days: z.number().optional(), hourly: z.boolean().optional(), units: z.string().optional() }, async ({ city, latitude, longitude, days, hourly, units }) => {
|
|
1146
|
+
try {
|
|
1147
|
+
const res = await api.post("/weather/forecast", { city, latitude, longitude, days, hourly, units });
|
|
1148
|
+
return ok(res.data);
|
|
1149
|
+
}
|
|
1150
|
+
catch (e) {
|
|
1151
|
+
return err(e);
|
|
1152
|
+
}
|
|
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
|
+
});
|
|
1134
1174
|
}
|
|
1135
1175
|
async function main() {
|
|
1136
1176
|
const api = await createClient();
|