netintel-mcp 1.1.23 → 1.1.26
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 — 79 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 on Base mainnet. 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
|
+
79 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
|
|------|-------------|-------|
|
|
@@ -113,6 +113,7 @@ Or add manually to your Claude Desktop config:
|
|
|
113
113
|
| netintel_json | Repair malformed JSON into valid JSON — fixes code fences, trailing… | $0.02 |
|
|
114
114
|
| netintel_schema | Validate data against a supplied schema — checks required fields… | $0.02 |
|
|
115
115
|
| netintel_schema_map | Transform a source object into a target schema — matches fields by… | $0.04 |
|
|
116
|
+
| netintel_domain_vet | Vet and pick a domain in one call — give candidate names, get back a… | $0.20 |
|
|
116
117
|
|
|
117
118
|
## Payment
|
|
118
119
|
All tools pay automatically via x402 on Base mainnet (USDC).
|
package/dist/index.js
CHANGED
|
@@ -820,6 +820,16 @@ function registerTools(server, api) {
|
|
|
820
820
|
return err(e);
|
|
821
821
|
}
|
|
822
822
|
});
|
|
823
|
+
// 79. Domain (POST)
|
|
824
|
+
server.tool("netintel_domain_vet", "Vet and pick a domain in one call — give candidate names, get back a ranked verdict on which to use and whether it's safe to build on: availability across TLDs, name quality, typosquat exposure, and a factual brand-collision check against…", { candidates: z.array(z.string()), tlds: z.array(z.string()).optional(), use_case: z.string().optional(), deep_check_top_n: z.number().optional() }, async ({ candidates, tlds, use_case, deep_check_top_n }) => {
|
|
825
|
+
try {
|
|
826
|
+
const res = await api.post("/domain/vet", { candidates, tlds, use_case, deep_check_top_n });
|
|
827
|
+
return ok(res.data);
|
|
828
|
+
}
|
|
829
|
+
catch (e) {
|
|
830
|
+
return err(e);
|
|
831
|
+
}
|
|
832
|
+
});
|
|
823
833
|
}
|
|
824
834
|
async function main() {
|
|
825
835
|
const api = await createClient();
|