netintel-mcp 1.1.42 → 1.1.45

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.
Files changed (3) hide show
  1. package/README.md +10 -5
  2. package/dist/index.js +50 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # netintel-mcp
2
2
 
3
- MCP server for NetIntel — 111 network intelligence tools for AI agents.
3
+ MCP server for NetIntel — 116 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,12 +31,12 @@ Or add manually to your Claude Desktop config:
31
31
 
32
32
  ## Tools
33
33
 
34
- 111 pay-per-call tools across DNS, SSL/TLS, WHOIS & domains, email security, IP intelligence, web & content, OSINT, AI text processing, and bundled reports.
34
+ 116 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
  |------|-------------|-------|
38
38
  | netintel_dns_lookup | DNS lookup / nslookup / dig API — resolve the common DNS record types… | $0.002 |
39
- | netintel_ssl_analyze | Performs a TLS handshake to inspect the certificate chain, probes… | $0.03 |
39
+ | netintel_ssl_analyze | Performs a TLS handshake to inspect the certificate chain, probes… | $0.007 |
40
40
  | netintel_redirect_trace | Follows a URL through its full redirect chain (up to 20 hops)… | $0.01 |
41
41
  | netintel_security_headers | Fetches a URL and evaluates 10 security-critical response headers (CSP… | $0.01 |
42
42
  | netintel_email_auth | Email deliverability & domain security check — validates SPF, DKIM… | $0.002 |
@@ -131,10 +131,10 @@ Or add manually to your Claude Desktop config:
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
132
  | netintel_v1_embeddings | OpenAI-compatible text embeddings API — standard /v1/embeddings request… | $0.005 |
133
133
  | netintel_semantic_rank | Semantic similarity ranking — send a query plus up to 100 candidate… | $0.02 |
134
- | netintel_v1_chat_completions | OpenAI-compatible chat completions gateway — standard… | $0.10 |
134
+ | netintel_v1_chat_completions | OpenAI-compatible chat completions gateway — standard… | $0.005 |
135
135
  | netintel_crypto_market | Structured live crypto market data for ~50 top assets in one JSON call:… | $0.005 |
136
136
  | netintel_gas_price | Live gas prices across Base, Ethereum, Arbitrum, Optimism, and Polygon… | $0.005 |
137
- | netintel_crypto_price | Spot prices for up to 25 crypto assets in one call — USD, EUR, or GBP —… | $0.01 |
137
+ | netintel_crypto_price | Spot prices for up to 25 crypto assets in one call — USD, EUR, or GBP —… | $0.005 |
138
138
  | netintel_crypto_ohlc | Historical OHLC candles for any major crypto asset — hourly or daily… | $0.02 |
139
139
  | netintel_currency_exchange_batch | Convert one base currency to up to 30 targets in a single call — fiat… | $0.02 |
140
140
  | netintel_currency_exchange_history | Daily historical exchange-rate series for any currency pair — fiat via… | $0.02 |
@@ -146,6 +146,11 @@ Or add manually to your Claude Desktop config:
146
146
  | netintel_web_fetch | Fetch any URL and get the raw body back — JSON parsed, everything else… | $0.003 |
147
147
  | netintel_weather_current | Live weather + 3-day forecast for any city or lat/lon worldwide —… | $0.002 |
148
148
  | netintel_weather_forecast | Multi-day weather forecast for any city or lat/lon worldwide — up to 16… | $0.003 |
149
+ | netintel_prediction_markets | Live prediction-market odds from Polymarket — list the top active… | $0.005 |
150
+ | netintel_prediction_market | Full detail for ONE Polymarket prediction market by id or slug —… | $0.003 |
151
+ | netintel_ssl_cert | Fast SSL/TLS certificate facts for any domain — issuer, subject, SANs… | $0.003 |
152
+ | netintel_text_chunk | Split text into overlapping chunks for RAG ingestion — by characters or… | $0.001 |
153
+ | netintel_text_stats | Instant text statistics — characters (with/without spaces), words… | $0.001 |
149
154
 
150
155
  ## Payment
151
156
  All tools pay automatically via x402 in USDC on Base mainnet.
package/dist/index.js CHANGED
@@ -1151,6 +1151,56 @@ function registerTools(server, api) {
1151
1151
  return err(e);
1152
1152
  }
1153
1153
  });
1154
+ // 113. Prediction (POST)
1155
+ server.tool("netintel_prediction_markets", "Live prediction-market odds from Polymarket — list the top active markets by volume, or search by keyword. Each result has the question, outcomes with current prices (implied probabilities), 24h/total volume, liquidity, and resolution…", { query: z.string().optional(), limit: z.number().optional(), status: z.string().optional() }, async ({ query, limit, status }) => {
1156
+ try {
1157
+ const res = await api.post("/prediction/markets", { query, limit, status });
1158
+ return ok(res.data);
1159
+ }
1160
+ catch (e) {
1161
+ return err(e);
1162
+ }
1163
+ });
1164
+ // 114. Prediction (POST)
1165
+ server.tool("netintel_prediction_market", "Full detail for ONE Polymarket prediction market by id or slug — question, description, every outcome with its current price (implied probability), volume, liquidity, open/close dates, resolution source, category, and status. No API key…", { id: z.string().optional(), slug: z.string().optional() }, async ({ id, slug }) => {
1166
+ try {
1167
+ const res = await api.post("/prediction/market", { id, slug });
1168
+ return ok(res.data);
1169
+ }
1170
+ catch (e) {
1171
+ return err(e);
1172
+ }
1173
+ });
1174
+ // 115. Ssl (POST)
1175
+ server.tool("netintel_ssl_cert", "Fast SSL/TLS certificate facts for any domain — issuer, subject, SANs, valid from/to, days until expiry, expired/self-signed flags, TLS version, chain length. One TLS handshake, sub-2-second answer. The light, cheap tier under /ssl/analyze…", { domain: z.string(), port: z.number().optional() }, async ({ domain, port }) => {
1176
+ try {
1177
+ const res = await api.post("/ssl/cert", { domain, port });
1178
+ return ok(res.data);
1179
+ }
1180
+ catch (e) {
1181
+ return err(e);
1182
+ }
1183
+ });
1184
+ // 116. Text (POST)
1185
+ server.tool("netintel_text_chunk", "Split text into overlapping chunks for RAG ingestion — by characters or words, with configurable chunk size and overlap. Deterministic (same input → same chunks), returns each chunk with its index and start/end offsets. No API key, no LLM…", { text: z.string(), chunk_size: z.number().optional(), overlap: z.number().optional(), unit: z.string().optional() }, async ({ text, chunk_size, overlap, unit }) => {
1186
+ try {
1187
+ const res = await api.post("/text/chunk", { text, chunk_size, overlap, unit });
1188
+ return ok(res.data);
1189
+ }
1190
+ catch (e) {
1191
+ return err(e);
1192
+ }
1193
+ });
1194
+ // 117. Text (POST)
1195
+ server.tool("netintel_text_stats", "Instant text statistics — characters (with/without spaces), words, unique words, sentences, paragraphs, average word/sentence length, longest word, reading and speaking time. Deterministic, no LLM, no API key. For agents sizing content…", { text: z.string() }, async ({ text }) => {
1196
+ try {
1197
+ const res = await api.post("/text/stats", { text });
1198
+ return ok(res.data);
1199
+ }
1200
+ catch (e) {
1201
+ return err(e);
1202
+ }
1203
+ });
1154
1204
  }
1155
1205
  async function main() {
1156
1206
  const api = await createClient();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netintel-mcp",
3
- "version": "1.1.42",
3
+ "version": "1.1.45",
4
4
  "mcpName": "io.github.kjgueye/netintel-mcp",
5
5
  "repository": {
6
6
  "type": "git",