netintel-mcp 1.1.26 → 1.1.27
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 +17 -2
- package/dist/index.js +150 -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 — 94 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
|
+
94 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
|
|------|-------------|-------|
|
|
@@ -114,6 +114,21 @@ Or add manually to your Claude Desktop config:
|
|
|
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
116
|
| netintel_domain_vet | Vet and pick a domain in one call — give candidate names, get back a… | $0.20 |
|
|
117
|
+
| netintel_openai | Call OpenAI's gpt-4o via a single pay-per-call x402 endpoint — no… | $0.10 |
|
|
118
|
+
| netintel_openai_gpt_4_1 | Call OpenAI's gpt-4.1 via a single pay-per-call x402 endpoint — no… | $0.09 |
|
|
119
|
+
| netintel_openai_gpt_4_1_mini | Call OpenAI's gpt-4.1-mini via a single pay-per-call x402 endpoint — no… | $0.02 |
|
|
120
|
+
| netintel_openai_gpt_4o_mini | Call OpenAI's gpt-4o-mini via a single pay-per-call x402 endpoint — no… | $0.01 |
|
|
121
|
+
| netintel_openai_gpt_4_1_nano | Call OpenAI's gpt-4.1-nano via a single pay-per-call x402 endpoint — no… | $0.01 |
|
|
122
|
+
| netintel_openai_gpt_5_5 | Call OpenAI's gpt-5.5 via a single pay-per-call x402 endpoint — no… | $0.65 |
|
|
123
|
+
| netintel_openai_gpt_5_4 | Call OpenAI's gpt-5.4 via a single pay-per-call x402 endpoint — no… | $0.25 |
|
|
124
|
+
| netintel_openai_gpt_5_4_mini | Call OpenAI's gpt-5.4-mini via a single pay-per-call x402 endpoint — no… | $0.04 |
|
|
125
|
+
| netintel_openai_gpt_5_4_nano | Call OpenAI's gpt-5.4-nano via a single pay-per-call x402 endpoint — no… | $0.01 |
|
|
126
|
+
| netintel_openai_gpt_5_1 | Call OpenAI's gpt-5.1 via a single pay-per-call x402 endpoint — no… | $0.15 |
|
|
127
|
+
| netintel_openai_gpt_5_nano | Call OpenAI's gpt-5-nano via a single pay-per-call x402 endpoint — no… | $0.01 |
|
|
128
|
+
| netintel_openai_gpt_5_2 | Call OpenAI's gpt-5.2 via a single pay-per-call x402 endpoint — no… | $0.20 |
|
|
129
|
+
| netintel_openai_gpt_5_6_sol | Call OpenAI's gpt-5.6-sol via a single pay-per-call x402 endpoint — no… | $0.65 |
|
|
130
|
+
| netintel_openai_gpt_5_6_terra | Call OpenAI's gpt-5.6-terra via a single pay-per-call x402 endpoint —… | $0.25 |
|
|
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 |
|
|
117
132
|
|
|
118
133
|
## Payment
|
|
119
134
|
All tools pay automatically via x402 on Base mainnet (USDC).
|
package/dist/index.js
CHANGED
|
@@ -830,6 +830,156 @@ function registerTools(server, api) {
|
|
|
830
830
|
return err(e);
|
|
831
831
|
}
|
|
832
832
|
});
|
|
833
|
+
// 80. Openai (POST)
|
|
834
|
+
server.tool("netintel_openai", "Call OpenAI's gpt-4o via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.10 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI…", { messages: z.array(z.any()), max_tokens: z.number().optional(), temperature: z.number().optional(), top_p: z.number().optional() }, async ({ messages, max_tokens, temperature, top_p }) => {
|
|
835
|
+
try {
|
|
836
|
+
const res = await api.post("/openai/gpt-4o", { messages, max_tokens, temperature, top_p });
|
|
837
|
+
return ok(res.data);
|
|
838
|
+
}
|
|
839
|
+
catch (e) {
|
|
840
|
+
return err(e);
|
|
841
|
+
}
|
|
842
|
+
});
|
|
843
|
+
// 81. Openai (POST)
|
|
844
|
+
server.tool("netintel_openai_gpt_4_1", "Call OpenAI's gpt-4.1 via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.09 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI…", { messages: z.array(z.any()), max_tokens: z.number().optional(), temperature: z.number().optional(), top_p: z.number().optional() }, async ({ messages, max_tokens, temperature, top_p }) => {
|
|
845
|
+
try {
|
|
846
|
+
const res = await api.post("/openai/gpt-4-1", { messages, max_tokens, temperature, top_p });
|
|
847
|
+
return ok(res.data);
|
|
848
|
+
}
|
|
849
|
+
catch (e) {
|
|
850
|
+
return err(e);
|
|
851
|
+
}
|
|
852
|
+
});
|
|
853
|
+
// 82. Openai (POST)
|
|
854
|
+
server.tool("netintel_openai_gpt_4_1_mini", "Call OpenAI's gpt-4.1-mini via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.02 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms:…", { messages: z.array(z.any()), max_tokens: z.number().optional(), temperature: z.number().optional(), top_p: z.number().optional() }, async ({ messages, max_tokens, temperature, top_p }) => {
|
|
855
|
+
try {
|
|
856
|
+
const res = await api.post("/openai/gpt-4-1-mini", { messages, max_tokens, temperature, top_p });
|
|
857
|
+
return ok(res.data);
|
|
858
|
+
}
|
|
859
|
+
catch (e) {
|
|
860
|
+
return err(e);
|
|
861
|
+
}
|
|
862
|
+
});
|
|
863
|
+
// 83. Openai (POST)
|
|
864
|
+
server.tool("netintel_openai_gpt_4o_mini", "Call OpenAI's gpt-4o-mini via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.01 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI…", { messages: z.array(z.any()), max_tokens: z.number().optional(), temperature: z.number().optional(), top_p: z.number().optional() }, async ({ messages, max_tokens, temperature, top_p }) => {
|
|
865
|
+
try {
|
|
866
|
+
const res = await api.post("/openai/gpt-4o-mini", { messages, max_tokens, temperature, top_p });
|
|
867
|
+
return ok(res.data);
|
|
868
|
+
}
|
|
869
|
+
catch (e) {
|
|
870
|
+
return err(e);
|
|
871
|
+
}
|
|
872
|
+
});
|
|
873
|
+
// 84. Openai (POST)
|
|
874
|
+
server.tool("netintel_openai_gpt_4_1_nano", "Call OpenAI's gpt-4.1-nano via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.01 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms:…", { messages: z.array(z.any()), max_tokens: z.number().optional(), temperature: z.number().optional(), top_p: z.number().optional() }, async ({ messages, max_tokens, temperature, top_p }) => {
|
|
875
|
+
try {
|
|
876
|
+
const res = await api.post("/openai/gpt-4-1-nano", { messages, max_tokens, temperature, top_p });
|
|
877
|
+
return ok(res.data);
|
|
878
|
+
}
|
|
879
|
+
catch (e) {
|
|
880
|
+
return err(e);
|
|
881
|
+
}
|
|
882
|
+
});
|
|
883
|
+
// 85. Openai (POST)
|
|
884
|
+
server.tool("netintel_openai_gpt_5_5", "Call OpenAI's gpt-5.5 via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.65 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
885
|
+
try {
|
|
886
|
+
const res = await api.post("/openai/gpt-5-5", { messages, max_completion_tokens });
|
|
887
|
+
return ok(res.data);
|
|
888
|
+
}
|
|
889
|
+
catch (e) {
|
|
890
|
+
return err(e);
|
|
891
|
+
}
|
|
892
|
+
});
|
|
893
|
+
// 86. Openai (POST)
|
|
894
|
+
server.tool("netintel_openai_gpt_5_4", "Call OpenAI's gpt-5.4 via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.25 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
895
|
+
try {
|
|
896
|
+
const res = await api.post("/openai/gpt-5-4", { messages, max_completion_tokens });
|
|
897
|
+
return ok(res.data);
|
|
898
|
+
}
|
|
899
|
+
catch (e) {
|
|
900
|
+
return err(e);
|
|
901
|
+
}
|
|
902
|
+
});
|
|
903
|
+
// 87. Openai (POST)
|
|
904
|
+
server.tool("netintel_openai_gpt_5_4_mini", "Call OpenAI's gpt-5.4-mini via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.04 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms:…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
905
|
+
try {
|
|
906
|
+
const res = await api.post("/openai/gpt-5-4-mini", { messages, max_completion_tokens });
|
|
907
|
+
return ok(res.data);
|
|
908
|
+
}
|
|
909
|
+
catch (e) {
|
|
910
|
+
return err(e);
|
|
911
|
+
}
|
|
912
|
+
});
|
|
913
|
+
// 88. Openai (POST)
|
|
914
|
+
server.tool("netintel_openai_gpt_5_4_nano", "Call OpenAI's gpt-5.4-nano via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.01 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms:…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
915
|
+
try {
|
|
916
|
+
const res = await api.post("/openai/gpt-5-4-nano", { messages, max_completion_tokens });
|
|
917
|
+
return ok(res.data);
|
|
918
|
+
}
|
|
919
|
+
catch (e) {
|
|
920
|
+
return err(e);
|
|
921
|
+
}
|
|
922
|
+
});
|
|
923
|
+
// 89. Openai (POST)
|
|
924
|
+
server.tool("netintel_openai_gpt_5_1", "Call OpenAI's gpt-5.1 via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.15 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
925
|
+
try {
|
|
926
|
+
const res = await api.post("/openai/gpt-5-1", { messages, max_completion_tokens });
|
|
927
|
+
return ok(res.data);
|
|
928
|
+
}
|
|
929
|
+
catch (e) {
|
|
930
|
+
return err(e);
|
|
931
|
+
}
|
|
932
|
+
});
|
|
933
|
+
// 90. Openai (POST)
|
|
934
|
+
server.tool("netintel_openai_gpt_5_nano", "Call OpenAI's gpt-5-nano via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.01 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
935
|
+
try {
|
|
936
|
+
const res = await api.post("/openai/gpt-5-nano", { messages, max_completion_tokens });
|
|
937
|
+
return ok(res.data);
|
|
938
|
+
}
|
|
939
|
+
catch (e) {
|
|
940
|
+
return err(e);
|
|
941
|
+
}
|
|
942
|
+
});
|
|
943
|
+
// 91. Openai (POST)
|
|
944
|
+
server.tool("netintel_openai_gpt_5_2", "Call OpenAI's gpt-5.2 via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.20 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
945
|
+
try {
|
|
946
|
+
const res = await api.post("/openai/gpt-5-2", { messages, max_completion_tokens });
|
|
947
|
+
return ok(res.data);
|
|
948
|
+
}
|
|
949
|
+
catch (e) {
|
|
950
|
+
return err(e);
|
|
951
|
+
}
|
|
952
|
+
});
|
|
953
|
+
// 92. Openai (POST)
|
|
954
|
+
server.tool("netintel_openai_gpt_5_6_sol", "Call OpenAI's gpt-5.6-sol via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.65 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
955
|
+
try {
|
|
956
|
+
const res = await api.post("/openai/gpt-5-6-sol", { messages, max_completion_tokens });
|
|
957
|
+
return ok(res.data);
|
|
958
|
+
}
|
|
959
|
+
catch (e) {
|
|
960
|
+
return err(e);
|
|
961
|
+
}
|
|
962
|
+
});
|
|
963
|
+
// 93. Openai (POST)
|
|
964
|
+
server.tool("netintel_openai_gpt_5_6_terra", "Call OpenAI's gpt-5.6-terra via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.25 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms:…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
965
|
+
try {
|
|
966
|
+
const res = await api.post("/openai/gpt-5-6-terra", { messages, max_completion_tokens });
|
|
967
|
+
return ok(res.data);
|
|
968
|
+
}
|
|
969
|
+
catch (e) {
|
|
970
|
+
return err(e);
|
|
971
|
+
}
|
|
972
|
+
});
|
|
973
|
+
// 94. Openai (POST)
|
|
974
|
+
server.tool("netintel_openai_gpt_5_6_luna", "Call OpenAI's gpt-5.6-luna via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.06 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms:…", { messages: z.array(z.any()), max_completion_tokens: z.number().optional() }, async ({ messages, max_completion_tokens }) => {
|
|
975
|
+
try {
|
|
976
|
+
const res = await api.post("/openai/gpt-5-6-luna", { messages, max_completion_tokens });
|
|
977
|
+
return ok(res.data);
|
|
978
|
+
}
|
|
979
|
+
catch (e) {
|
|
980
|
+
return err(e);
|
|
981
|
+
}
|
|
982
|
+
});
|
|
833
983
|
}
|
|
834
984
|
async function main() {
|
|
835
985
|
const api = await createClient();
|