netintel-mcp 1.1.30 → 1.1.31

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 CHANGED
@@ -129,8 +129,8 @@ Or add manually to your Claude Desktop config:
129
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
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
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 |
132
- | netintel_v1 | OpenAI-compatible text embeddings API — standard /v1/embeddings request… | $0.005 |
133
- | netintel_semantic | Semantic similarity ranking — send a query plus up to 100 candidate… | $0.02 |
132
+ | netintel_v1_embeddings | OpenAI-compatible text embeddings API — standard /v1/embeddings request… | $0.005 |
133
+ | netintel_semantic_rank | Semantic similarity ranking — send a query plus up to 100 candidate… | $0.02 |
134
134
  | netintel_v1_chat_completions | OpenAI-compatible chat completions gateway — standard… | $0.10 |
135
135
 
136
136
  ## Payment
package/dist/index.js CHANGED
@@ -980,8 +980,8 @@ function registerTools(server, api) {
980
980
  return err(e);
981
981
  }
982
982
  });
983
- // 95. V1 (POST)
984
- server.tool("netintel_v1", "OpenAI-compatible text embeddings API — standard /v1/embeddings request shape: input as a string or a batch of up to 128 strings (64000 chars total on text-embedding-3-small, the default; 24000 on text-embedding-3-large). Flat $0.005 per…", { input: z.string(), model: z.string().optional(), dimensions: z.number().optional() }, async ({ input, model, dimensions }) => {
983
+ // 95. V1 Embeddings (POST)
984
+ server.tool("netintel_v1_embeddings", "OpenAI-compatible text embeddings API — standard /v1/embeddings request shape: input as a string or a batch of up to 128 strings (64000 chars total on text-embedding-3-small, the default; 24000 on text-embedding-3-large). Flat $0.005 per…", { input: z.union([z.string(), z.array(z.string())]), model: z.string().optional(), dimensions: z.number().optional() }, async ({ input, model, dimensions }) => {
985
985
  try {
986
986
  const res = await api.post("/v1/embeddings", { input, model, dimensions });
987
987
  return ok(res.data);
@@ -990,8 +990,8 @@ function registerTools(server, api) {
990
990
  return err(e);
991
991
  }
992
992
  });
993
- // 96. Semantic (POST)
994
- server.tool("netintel_semantic", "Semantic similarity ranking — send a query plus up to 100 candidate texts, get the candidates back ranked by semantic similarity with scores. No vectors, no cosine math, no embedding model to manage: one call, one price, ranked results…", { query: z.string(), candidates: z.array(z.string()), model: z.string().optional(), top_k: z.number().optional(), min_score: z.number().optional() }, async ({ query, candidates, model, top_k, min_score }) => {
993
+ // 96. Semantic Rank (POST)
994
+ server.tool("netintel_semantic_rank", "Semantic similarity ranking — send a query plus up to 100 candidate texts, get the candidates back ranked by semantic similarity with scores. No vectors, no cosine math, no embedding model to manage: one call, one price, ranked results…", { query: z.string(), candidates: z.array(z.string()), model: z.string().optional(), top_k: z.number().optional(), min_score: z.number().optional() }, async ({ query, candidates, model, top_k, min_score }) => {
995
995
  try {
996
996
  const res = await api.post("/semantic/rank", { query, candidates, model, top_k, min_score });
997
997
  return ok(res.data);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netintel-mcp",
3
- "version": "1.1.30",
3
+ "version": "1.1.31",
4
4
  "mcpName": "io.github.kjgueye/netintel-mcp",
5
5
  "repository": {
6
6
  "type": "git",