iteratools-mcp 1.0.1 → 1.0.4

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/index.js CHANGED
@@ -54,6 +54,9 @@ const TOOLS = [
54
54
  { name: 'ip_geolocation', description: 'Get geolocation data for an IP address (country, region, city, lat/lng, timezone)', inputSchema: { type: 'object', properties: { ip: { type: 'string', description: 'IPv4 or IPv6 address. Omit to use request IP.' } }, required: [] }, endpoint: '/ip/geolocation', price: '$0.001' },
55
55
  { name: 'currency_convert', description: 'Convert between currencies using live ECB rates', inputSchema: { type: 'object', properties: { from: { type: 'string', default: 'USD', description: 'Source currency code (e.g. USD, EUR, BRL)' }, to: { type: 'string', default: 'BRL' }, amount: { type: 'number', default: 1 } }, required: [] }, endpoint: '/currency/convert', price: '$0.001' },
56
56
  { name: 'whois', description: 'WHOIS domain lookup — registrar, creation/expiration dates, nameservers, status', inputSchema: { type: 'object', properties: { domain: { type: 'string', description: 'Domain to query (e.g. example.com)' } }, required: ['domain'] }, endpoint: '/whois', price: '$0.001' },
57
+ { name: 'calendar_holidays', description: 'Get public holidays for any country and year. Supports 100+ countries via Nager.Date.', inputSchema: { type: 'object', properties: { countryCode: { type: 'string', description: 'ISO 3166-1 alpha-2 country code (e.g. US, BR, DE, FR, GB)' }, year: { type: 'integer', description: 'Year to query (defaults to current year)' } }, required: ['countryCode'] }, endpoint: '/calendar/holidays', price: '$0.001', method: 'GET' },
58
+ { name: 'sentiment_analysis', description: 'Analyze sentiment of text (positive/negative/neutral) with AFINN score and lists of positive/negative words found.', inputSchema: { type: 'object', properties: { text: { type: 'string', description: 'Text to analyze (max 10000 chars)' } }, required: ['text'] }, endpoint: '/sentiment', price: '$0.001' },
59
+ { name: 'summarize', description: 'Extract key sentences from text or URL. Returns a concise summary.', inputSchema: { type: 'object', properties: { text: { type: 'string', description: 'Text to summarize (max 50000 chars)' }, url: { type: 'string', description: 'URL to fetch and summarize' }, sentences: { type: 'number', description: 'Number of sentences in summary (default 3, max 10)', default: 3 } } }, endpoint: '/summarize', price: '$0.002' },
57
60
  ];
58
61
 
59
62
  async function callTool(endpoint, params) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "iteratools-mcp",
3
- "version": "1.0.1",
4
- "description": "MCP server for IteraTools — 33 pay-per-use API tools for AI agents",
3
+ "version": "1.0.4",
4
+ "description": "MCP server for IteraTools — 36 pay-per-use API tools for AI agents",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "iteratools-mcp": "./index.js"
@@ -9,7 +9,15 @@
9
9
  "scripts": {
10
10
  "start": "node index.js"
11
11
  },
12
- "keywords": ["mcp", "ai", "agents", "api", "tools", "iteratools", "model-context-protocol"],
12
+ "keywords": [
13
+ "mcp",
14
+ "ai",
15
+ "agents",
16
+ "api",
17
+ "tools",
18
+ "iteratools",
19
+ "model-context-protocol"
20
+ ],
13
21
  "author": "Iterasoft",
14
22
  "license": "MIT",
15
23
  "homepage": "https://iteratools.com",
@@ -26,4 +34,4 @@
26
34
  "engines": {
27
35
  "node": ">=18"
28
36
  }
29
- }
37
+ }
package/README.md DELETED
@@ -1,83 +0,0 @@
1
- # IteraTools MCP Server
2
-
3
- > Production-ready MCP server with 40+ tools for AI agents — QR codes, PDFs, text processing, TTS, web scraping, image generation and more.
4
-
5
- [![MCP Compatible](https://img.shields.io/badge/MCP-Compatible-green)](https://iteratools.com)
6
- [![API Docs](https://img.shields.io/badge/docs-iteratools.com-blue)](https://iteratools.com)
7
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
-
9
- ## What is IteraTools?
10
-
11
- IteraTools is a production-ready API platform providing ready-to-use utilities for AI agents and developers. With a single API key, access 40+ tools via the Model Context Protocol (MCP).
12
-
13
- Uses **x402 micropayments** on Base — no subscription needed, pay per use in USDC.
14
-
15
- ## Available Tools
16
-
17
- | Category | Tools |
18
- |----------|-------|
19
- | 🖼️ Images | Generate (Flux 1.1 Pro), fast generate, background removal (rembg), resize, OCR |
20
- | 🎬 Video | Generate (Kling), extract frames |
21
- | 📄 PDF | Extract text, generate from HTML |
22
- | 🌐 Web | Scrape, screenshot, search |
23
- | 🔊 Audio | TTS (text-to-speech), transcription |
24
- | 📱 WhatsApp | Send template, reply in conversation |
25
- | 🔧 Utils | QR code, URL shortener, email validate, weather, crypto price, code execution |
26
-
27
- ## Quick Start
28
-
29
- ### Claude Desktop
30
-
31
- Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
32
-
33
- ```json
34
- {
35
- "mcpServers": {
36
- "iteratools": {
37
- "command": "npx",
38
- "args": ["-y", "@iteratools/mcp"],
39
- "env": {
40
- "ITERATOOLS_API_KEY": "your-api-key"
41
- }
42
- }
43
- }
44
- }
45
- ```
46
-
47
- ### Get API Key
48
-
49
- 1. Visit [iteratools.com](https://iteratools.com)
50
- 2. Sign up for free
51
- 3. Copy your API key
52
-
53
- ### Example Usage
54
-
55
- ```bash
56
- # Generate a QR code
57
- curl -X POST https://api.iteratools.com/qrcode \
58
- -H "X-API-Key: your-key" \
59
- -d '{"text": "https://iteratools.com"}'
60
-
61
- # Generate an image
62
- curl -X POST https://api.iteratools.com/image/generate \
63
- -H "X-API-Key: your-key" \
64
- -d '{"prompt": "a sunset over mountains"}'
65
- ```
66
-
67
- ## Pricing
68
-
69
- Pay per use — no subscription:
70
-
71
- | Tool | Price |
72
- |------|-------|
73
- | Image generate (Flux 1.1 Pro) | $0.005 |
74
- | Image fast | $0.002 |
75
- | Video generate | $0.05 |
76
- | PDF/Web/Utils tools | $0.001–0.003 |
77
-
78
- ## Links
79
-
80
- - 🌐 [Website](https://iteratools.com)
81
- - 📚 [API Documentation](https://iteratools.com/docs)
82
- - 🐙 [GitHub](https://github.com/fredpsantos33/iteratools-mcp)
83
- - 💬 [Support](https://iteratools.com/support)
package/smithery.yaml DELETED
@@ -1,15 +0,0 @@
1
- # IteraTools MCP Server configuration
2
- # https://smithery.ai/docs/config
3
-
4
- startCommand:
5
- type: http
6
- configSchema:
7
- type: object
8
- properties:
9
- apiKey:
10
- type: string
11
- description: Your IteraTools API key (get one at https://iteratools.com)
12
- required: []
13
- exampleConfig:
14
- apiKey: "your-api-key"
15
- url: https://iteratools--iterasoft.run.tools