netintel-mcp 1.1.45 → 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 +3 -2
- package/dist/index.js +10 -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,7 +31,7 @@ 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
|
|------|-------------|-------|
|
|
@@ -151,6 +151,7 @@ Or add manually to your Claude Desktop config:
|
|
|
151
151
|
| netintel_ssl_cert | Fast SSL/TLS certificate facts for any domain — issuer, subject, SANs… | $0.003 |
|
|
152
152
|
| netintel_text_chunk | Split text into overlapping chunks for RAG ingestion — by characters or… | $0.001 |
|
|
153
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 |
|
|
154
155
|
|
|
155
156
|
## Payment
|
|
156
157
|
All tools pay automatically via x402 in USDC on Base mainnet.
|
package/dist/index.js
CHANGED
|
@@ -1201,6 +1201,16 @@ function registerTools(server, api) {
|
|
|
1201
1201
|
return err(e);
|
|
1202
1202
|
}
|
|
1203
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
|
+
});
|
|
1204
1214
|
}
|
|
1205
1215
|
async function main() {
|
|
1206
1216
|
const api = await createClient();
|