netintel-mcp 1.1.44 → 1.1.46
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 -5
- 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 — 117 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,12 +31,12 @@ Or add manually to your Claude Desktop config:
|
|
|
31
31
|
|
|
32
32
|
## Tools
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
117 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
|
|------|-------------|-------|
|
|
38
38
|
| netintel_dns_lookup | DNS lookup / nslookup / dig API — resolve the common DNS record types… | $0.002 |
|
|
39
|
-
| netintel_ssl_analyze | Performs a TLS handshake to inspect the certificate chain, probes… | $0.
|
|
39
|
+
| netintel_ssl_analyze | Performs a TLS handshake to inspect the certificate chain, probes… | $0.007 |
|
|
40
40
|
| netintel_redirect_trace | Follows a URL through its full redirect chain (up to 20 hops)… | $0.01 |
|
|
41
41
|
| netintel_security_headers | Fetches a URL and evaluates 10 security-critical response headers (CSP… | $0.01 |
|
|
42
42
|
| netintel_email_auth | Email deliverability & domain security check — validates SPF, DKIM… | $0.002 |
|
|
@@ -131,10 +131,10 @@ Or add manually to your Claude Desktop config:
|
|
|
131
131
|
| netintel_openai_gpt_5_6_luna | Call OpenAI's gpt-5.6-luna via a single pay-per-call x402 endpoint — no… | $0.06 |
|
|
132
132
|
| netintel_v1_embeddings | OpenAI-compatible text embeddings API — standard /v1/embeddings request… | $0.005 |
|
|
133
133
|
| netintel_semantic_rank | Semantic similarity ranking — send a query plus up to 100 candidate… | $0.02 |
|
|
134
|
-
| netintel_v1_chat_completions | OpenAI-compatible chat completions gateway — standard… | $0.
|
|
134
|
+
| netintel_v1_chat_completions | OpenAI-compatible chat completions gateway — standard… | $0.005 |
|
|
135
135
|
| netintel_crypto_market | Structured live crypto market data for ~50 top assets in one JSON call:… | $0.005 |
|
|
136
136
|
| netintel_gas_price | Live gas prices across Base, Ethereum, Arbitrum, Optimism, and Polygon… | $0.005 |
|
|
137
|
-
| netintel_crypto_price | Spot prices for up to 25 crypto assets in one call — USD, EUR, or GBP —… | $0.
|
|
137
|
+
| netintel_crypto_price | Spot prices for up to 25 crypto assets in one call — USD, EUR, or GBP —… | $0.005 |
|
|
138
138
|
| netintel_crypto_ohlc | Historical OHLC candles for any major crypto asset — hourly or daily… | $0.02 |
|
|
139
139
|
| netintel_currency_exchange_batch | Convert one base currency to up to 30 targets in a single call — fiat… | $0.02 |
|
|
140
140
|
| netintel_currency_exchange_history | Daily historical exchange-rate series for any currency pair — fiat via… | $0.02 |
|
|
@@ -148,6 +148,10 @@ Or add manually to your Claude Desktop config:
|
|
|
148
148
|
| netintel_weather_forecast | Multi-day weather forecast for any city or lat/lon worldwide — up to 16… | $0.003 |
|
|
149
149
|
| netintel_prediction_markets | Live prediction-market odds from Polymarket — list the top active… | $0.005 |
|
|
150
150
|
| netintel_prediction_market | Full detail for ONE Polymarket prediction market by id or slug —… | $0.003 |
|
|
151
|
+
| netintel_ssl_cert | Fast SSL/TLS certificate facts for any domain — issuer, subject, SANs… | $0.003 |
|
|
152
|
+
| netintel_text_chunk | Split text into overlapping chunks for RAG ingestion — by characters or… | $0.001 |
|
|
153
|
+
| netintel_text_stats | Instant text statistics — characters (with/without spaces), words… | $0.001 |
|
|
154
|
+
| netintel_embeddings | Multilingual text embeddings (384-dim) served in-house, no OpenAI… | $0.001 |
|
|
151
155
|
|
|
152
156
|
## Payment
|
|
153
157
|
All tools pay automatically via x402 in USDC on Base mainnet.
|
package/dist/index.js
CHANGED
|
@@ -1171,6 +1171,46 @@ function registerTools(server, api) {
|
|
|
1171
1171
|
return err(e);
|
|
1172
1172
|
}
|
|
1173
1173
|
});
|
|
1174
|
+
// 115. Ssl (POST)
|
|
1175
|
+
server.tool("netintel_ssl_cert", "Fast SSL/TLS certificate facts for any domain — issuer, subject, SANs, valid from/to, days until expiry, expired/self-signed flags, TLS version, chain length. One TLS handshake, sub-2-second answer. The light, cheap tier under /ssl/analyze…", { domain: z.string(), port: z.number().optional() }, async ({ domain, port }) => {
|
|
1176
|
+
try {
|
|
1177
|
+
const res = await api.post("/ssl/cert", { domain, port });
|
|
1178
|
+
return ok(res.data);
|
|
1179
|
+
}
|
|
1180
|
+
catch (e) {
|
|
1181
|
+
return err(e);
|
|
1182
|
+
}
|
|
1183
|
+
});
|
|
1184
|
+
// 116. Text (POST)
|
|
1185
|
+
server.tool("netintel_text_chunk", "Split text into overlapping chunks for RAG ingestion — by characters or words, with configurable chunk size and overlap. Deterministic (same input → same chunks), returns each chunk with its index and start/end offsets. No API key, no LLM…", { text: z.string(), chunk_size: z.number().optional(), overlap: z.number().optional(), unit: z.string().optional() }, async ({ text, chunk_size, overlap, unit }) => {
|
|
1186
|
+
try {
|
|
1187
|
+
const res = await api.post("/text/chunk", { text, chunk_size, overlap, unit });
|
|
1188
|
+
return ok(res.data);
|
|
1189
|
+
}
|
|
1190
|
+
catch (e) {
|
|
1191
|
+
return err(e);
|
|
1192
|
+
}
|
|
1193
|
+
});
|
|
1194
|
+
// 117. Text (POST)
|
|
1195
|
+
server.tool("netintel_text_stats", "Instant text statistics — characters (with/without spaces), words, unique words, sentences, paragraphs, average word/sentence length, longest word, reading and speaking time. Deterministic, no LLM, no API key. For agents sizing content…", { text: z.string() }, async ({ text }) => {
|
|
1196
|
+
try {
|
|
1197
|
+
const res = await api.post("/text/stats", { text });
|
|
1198
|
+
return ok(res.data);
|
|
1199
|
+
}
|
|
1200
|
+
catch (e) {
|
|
1201
|
+
return err(e);
|
|
1202
|
+
}
|
|
1203
|
+
});
|
|
1204
|
+
// 118. Embeddings (POST)
|
|
1205
|
+
server.tool("netintel_embeddings", "Multilingual text embeddings (384-dim) served in-house, no OpenAI dependency, no API key. NetIntel's cheapest embeddings at $0.001/call, batches up to 256 texts. Supports query/passage input types for retrieval (e5). Pairs with /text/chunk…", { input: z.string(), input_type: z.string().optional(), encoding_format: z.string().optional() }, async ({ input, input_type, encoding_format }) => {
|
|
1206
|
+
try {
|
|
1207
|
+
const res = await api.post("/embeddings", { input, input_type, encoding_format });
|
|
1208
|
+
return ok(res.data);
|
|
1209
|
+
}
|
|
1210
|
+
catch (e) {
|
|
1211
|
+
return err(e);
|
|
1212
|
+
}
|
|
1213
|
+
});
|
|
1174
1214
|
}
|
|
1175
1215
|
async function main() {
|
|
1176
1216
|
const api = await createClient();
|