netintel-mcp 1.1.50 → 1.1.52
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 +0 -0
- package/dist/client.js +0 -0
- package/dist/index.js +6 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
File without changes
|
package/dist/client.js
CHANGED
|
File without changes
|
package/dist/index.js
CHANGED
|
@@ -851,7 +851,7 @@ function registerTools(server, api) {
|
|
|
851
851
|
}
|
|
852
852
|
});
|
|
853
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.
|
|
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.005 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
855
|
try {
|
|
856
856
|
const res = await api.post("/openai/gpt-4-1-mini", { messages, max_tokens, temperature, top_p });
|
|
857
857
|
return ok(res.data);
|
|
@@ -861,7 +861,7 @@ function registerTools(server, api) {
|
|
|
861
861
|
}
|
|
862
862
|
});
|
|
863
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.
|
|
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.005 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
865
|
try {
|
|
866
866
|
const res = await api.post("/openai/gpt-4o-mini", { messages, max_tokens, temperature, top_p });
|
|
867
867
|
return ok(res.data);
|
|
@@ -871,7 +871,7 @@ function registerTools(server, api) {
|
|
|
871
871
|
}
|
|
872
872
|
});
|
|
873
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.
|
|
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.005 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
875
|
try {
|
|
876
876
|
const res = await api.post("/openai/gpt-4-1-nano", { messages, max_tokens, temperature, top_p });
|
|
877
877
|
return ok(res.data);
|
|
@@ -911,7 +911,7 @@ function registerTools(server, api) {
|
|
|
911
911
|
}
|
|
912
912
|
});
|
|
913
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.
|
|
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.005 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
915
|
try {
|
|
916
916
|
const res = await api.post("/openai/gpt-5-4-nano", { messages, max_completion_tokens });
|
|
917
917
|
return ok(res.data);
|
|
@@ -931,7 +931,7 @@ function registerTools(server, api) {
|
|
|
931
931
|
}
|
|
932
932
|
});
|
|
933
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.
|
|
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.005 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
935
|
try {
|
|
936
936
|
const res = await api.post("/openai/gpt-5-nano", { messages, max_completion_tokens });
|
|
937
937
|
return ok(res.data);
|
|
@@ -1001,7 +1001,7 @@ function registerTools(server, api) {
|
|
|
1001
1001
|
}
|
|
1002
1002
|
});
|
|
1003
1003
|
// 97. V1 (POST)
|
|
1004
|
-
server.tool("netintel_v1_chat_completions", "OpenAI-compatible chat completions gateway (POST /v1/chat/completions
|
|
1004
|
+
server.tool("netintel_v1_chat_completions", "OpenAI-compatible chat completions gateway (POST /v1/chat/completions shape). The model in the body sets the price: POST unpaid and the 402 quotes that model's exact price in USDC via x402 — no OpenAI account or API key. A model the gateway does not serve returns a 400 naming its dedicated endpoint; where per-model pricing is on it serves those too, each at its configured price. This client pays accepted challenges automatically — this text is not a spending cap. GET /v1/models (free) is the live catalogue. Supports response_format {type:\"json_object\"}.", { model: z.string(), messages: z.array(z.any()), max_tokens: z.number().optional(), response_format: z.object({ type: z.enum(["json_object", "text"]) }).optional() }, async ({ model, messages, max_tokens, response_format }) => {
|
|
1005
1005
|
try {
|
|
1006
1006
|
const res = await api.post("/v1/chat/completions", { model, messages, max_tokens, response_format });
|
|
1007
1007
|
return ok(res.data);
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netintel-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.52",
|
|
4
4
|
"mcpName": "io.github.kjgueye/netintel-mcp",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/kjgueye/netintel-mcp.git"
|
|
8
8
|
},
|
|
9
|
-
"description": "MCP server for NetIntel
|
|
9
|
+
"description": "MCP server for NetIntel \u2014 DNS, SSL, WHOIS, email security, OSINT via x402 micropayments",
|
|
10
10
|
"main": "dist/index.js",
|
|
11
11
|
"bin": {
|
|
12
12
|
"netintel-mcp": "dist/index.js"
|