netintel-mcp 1.1.38 → 1.1.39
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 — 109 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
|
+
109 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
|
|------|-------------|-------|
|
|
@@ -143,6 +143,7 @@ Or add manually to your Claude Desktop config:
|
|
|
143
143
|
| netintel_wallet_intel | Counterparty due-diligence for any Base or Ethereum wallet — age… | $0.05 |
|
|
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
|
+
| netintel_web_fetch | Fetch any URL and get the raw body back — JSON parsed, everything else… | $0.003 |
|
|
146
147
|
|
|
147
148
|
## Payment
|
|
148
149
|
All tools pay automatically via x402 in USDC on Base mainnet.
|
package/dist/index.js
CHANGED
|
@@ -1121,6 +1121,16 @@ function registerTools(server, api) {
|
|
|
1121
1121
|
return err(e);
|
|
1122
1122
|
}
|
|
1123
1123
|
});
|
|
1124
|
+
// 110. Web (POST)
|
|
1125
|
+
server.tool("netintel_web_fetch", "Fetch any URL and get the raw body back — JSON parsed, everything else as text — from safe server-side egress. For data APIs (ArcGIS, government/open-data portals, blob storage) that /web/extract's markdown conversion mangles. No API key…", { url: z.string(), max_bytes: z.number().optional() }, async ({ url, max_bytes }) => {
|
|
1126
|
+
try {
|
|
1127
|
+
const res = await api.post("/web/fetch", { url, max_bytes });
|
|
1128
|
+
return ok(res.data);
|
|
1129
|
+
}
|
|
1130
|
+
catch (e) {
|
|
1131
|
+
return err(e);
|
|
1132
|
+
}
|
|
1133
|
+
});
|
|
1124
1134
|
}
|
|
1125
1135
|
async function main() {
|
|
1126
1136
|
const api = await createClient();
|