x402engine-mcp 1.0.3 → 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.
Files changed (3) hide show
  1. package/README.md +23 -2
  2. package/package.json +2 -2
  3. package/server.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # x402engine-mcp
2
2
 
3
- MCP server for [x402 Engine](https://x402-gateway-production.up.railway.app) — giving AI agents access to 16 pay-per-call APIs via HTTP 402 micropayments.
3
+ MCP server for [x402 Engine](https://x402-gateway-production.up.railway.app) — giving AI agents access to 38 pay-per-call APIs via HTTP 402 micropayments.
4
4
 
5
5
  Payments are made with USDC on Base, USDC on Solana, or USDm on MegaETH. Prices range from $0.001 to $0.12 per call.
6
6
 
@@ -32,6 +32,13 @@ claude mcp add x402engine -- npx -y x402engine-mcp
32
32
 
33
33
  ## Available Tools
34
34
 
35
+ ### LLM Inference
36
+ | Tool | Price | Description |
37
+ |------|-------|-------------|
38
+ | `llm_chat` | $0.002-$0.09 | Chat completion with any supported model |
39
+
40
+ Supported models: GPT-4o ($0.04), GPT-4o Mini ($0.003), OpenAI o1 ($0.03), Claude Opus 4.6 ($0.09), Claude Sonnet 4.5 ($0.06), Claude Haiku 4.5 ($0.02), Gemini 2.5 Pro ($0.035), Gemini 2.5 Flash ($0.009), Grok 4 ($0.06), DeepSeek V3 ($0.005), DeepSeek R1 ($0.01), Llama 3.3 70B ($0.002), Mistral Large 3 ($0.006), Qwen3 235B ($0.004), Perplexity Sonar Pro ($0.06).
41
+
35
42
  ### Image Generation
36
43
  | Tool | Price | Description |
37
44
  |------|-------|-------------|
@@ -46,6 +53,13 @@ claude mcp add x402engine -- npx -y x402engine-mcp
46
53
  | Tool | Price | Description |
47
54
  |------|-------|-------------|
48
55
  | `transcribe_audio` | $0.10 | Audio-to-text transcription (Deepgram Nova-3) |
56
+ | `tts_openai` | $0.01 | Text-to-speech (OpenAI) |
57
+ | `tts_elevenlabs` | $0.02 | Text-to-speech (ElevenLabs) |
58
+
59
+ ### Text Embeddings
60
+ | Tool | Price | Description |
61
+ |------|-------|-------------|
62
+ | `create_embeddings` | $0.001 | Text embeddings (OpenAI text-embedding-3-small) |
49
63
 
50
64
  ### Crypto & Market Data
51
65
  | Tool | Price | Description |
@@ -64,6 +78,13 @@ claude mcp add x402engine -- npx -y x402engine-mcp
64
78
  | `get_wallet_pnl` | $0.01 | Profit & loss analysis |
65
79
  | `get_token_prices` | $0.005 | DEX-derived token prices |
66
80
  | `get_token_metadata` | $0.002 | Token metadata |
81
+ | `simulate_transaction` | $0.01 | Transaction simulation (Tenderly) |
82
+
83
+ ### Web
84
+ | Tool | Price | Description |
85
+ |------|-------|-------------|
86
+ | `web_scrape` | $0.005 | Scrape and extract web page content |
87
+ | `web_screenshot` | $0.01 | Capture web page screenshot |
67
88
 
68
89
  ### IPFS Storage
69
90
  | Tool | Price | Description |
@@ -92,7 +113,7 @@ claude mcp add x402engine -- npx -y x402engine-mcp
92
113
 
93
114
  ## How It Works
94
115
 
95
- 1. Agent calls an MCP tool (e.g., `get_crypto_price`)
116
+ 1. Agent calls an MCP tool (e.g., `llm_chat`)
96
117
  2. MCP server makes HTTP request to x402engine.app
97
118
  3. Gateway returns `402 Payment Required` with pricing
98
119
  4. Agent pays with crypto via the x402 protocol
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "x402engine-mcp",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
- "description": "50+ pay-per-call APIs for AI agents — image generation, LLM inference, code execution, transcription, crypto data, wallet analytics, ENS, IPFS, travel search, and more via HTTP 402 micropayments",
5
+ "description": "38 pay-per-call APIs for AI agents — 15 LLMs (GPT-4o, Claude, Gemini, Grok, DeepSeek, Llama, Mistral, Qwen, Perplexity), image generation, code execution, TTS, transcription, crypto data, wallet analytics, web scraping, IPFS, and more via HTTP 402 micropayments",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./src/index.ts",
8
8
  "bin": {
package/server.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.agentc22/x402engine-mcp",
4
- "description": "50+ pay-per-call APIs for AI agents — image generation, LLM inference, code execution, transcription, crypto data, wallet analytics, ENS, IPFS, travel search, and more. Pays with USDC on Base/Solana or USDm on MegaETH via HTTP 402.",
4
+ "description": "50+ pay-per-call APIs for AI agents — images, LLM, code, crypto, travel & more via x402",
5
5
  "repository": {
6
6
  "url": "https://github.com/agentc22/x402engine-mcp",
7
7
  "source": "github"