sats4ai
Bitcoin-powered tools marketplace. Image, text, video, music, speech, 3D, file conversion, SMS — all via Lightning micropayments. No signup required.
sats4ai-mcp
33+ AI tools paid with Bitcoin Lightning. No signup, no API keys, no KYC.
A remote MCP (Model Context Protocol) server that gives AI agents access to image generation, video creation, text generation, speech, translation, image processing, OCR, audiobook conversion, email, SMS, voice cloning, and more — all paid per-use with Lightning Network micropayments.
Quick Setup
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"sats4ai": {
"url": "https://sats4ai.com/api/mcp"
}
}
}
Claude Code
claude mcp add sats4ai --transport http https://sats4ai.com/api/mcp
Cursor
Add to your MCP settings:
{
"mcpServers": {
"sats4ai": {
"url": "https://sats4ai.com/api/mcp"
}
}
}
stdio proxy (legacy MCP clients)
For clients that don't support remote HTTP servers, use the bundled stdio proxy:
npx sats4ai-mcp
Or in your config:
{
"mcpServers": {
"sats4ai": {
"command": "npx",
"args": ["sats4ai-mcp"]
}
}
}
Any MCP Client
The server URL is:
https://sats4ai.com/api/mcp
This is a remote HTTP server — no local process, no dependencies, no installation needed.
Available Tools
AI Generation
| Tool | Description | Price |
|---|---|---|
image | Generate images from text prompts | 100-200 sats |
video | Generate videos from text prompts | 50 sats/unit |
video_from_image | Animate a still image into video | 100 sats/sec |
text | Chat with AI language models (262K context) | ~1 sat/100 chars |
translate_text | Translate text across 119 languages | ~1 sat/1000 chars |
music | Generate songs with AI vocals | 100 sats |
3d | Convert a photo to a 3D GLB model | 350 sats |
Audio & Speech
| Tool | Description | Price |
|---|---|---|
tts | Text to speech (467 voices, 29 languages) | 300 sats |
transcription | Speech to text (13 languages) | 10 sats/min |
voice_clone | Clone a voice from an audio sample | 7,500 sats |
epub_to_audiobook | Convert books (EPUB/PDF/TXT) to AI-narrated audiobooks | 500+ sats |
Image Processing
| Tool | Description | Price |
|---|---|---|
remove_background | Remove background from any image (BiRefNet, SOTA) | 5 sats |
upscale_image | Upscale images 2x/4x with Real-ESRGAN | 5 sats |
restore_face | Restore blurry/damaged faces (CodeFormer) | 5 sats |
colorize_image | Colorize B&W photos (DDColor, ICCV 2023) | 5 sats |
deblur_image | Remove camera-shake blur (NAFNet, ECCV 2022) | 20 sats |
detect_nsfw | Classify image safety (normal/suggestive/explicit) | 2 sats |
detect_objects | Detect objects with bounding boxes (Grounding DINO) | 5 sats |
remove_object | Remove objects by description — no mask needed | 15 sats |
image_edit | Edit images with AI instructions | Dynamic |
Vision & Documents
| Tool | Description | Price |
|---|---|---|
vision | Analyze and describe image content | 21 sats |
ocr | Extract text from PDFs and images | 10 sats/page |
extract_receipt | Receipt to structured JSON | 50 sats |
file_convert | Convert between 200+ file formats | 100 sats |
pdf_merge | Merge multiple PDFs into one | 100 sats |
convert_html_to_pdf | HTML/Markdown to PDF | 50 sats |
Communication
| Tool | Description | Price |
|---|---|---|
email | Send email to any address | 200 sats |
sms | Send SMS worldwide | Dynamic |
call | Place automated phone calls | Dynamic |
ai_call | AI voice agent phone calls (async) | Dynamic |
Helper Tools
| Tool | Description |
|---|---|
list_models | Browse available AI models and pricing |
get_model_pricing | Get pricing for a specific model |
create_payment | Create a Lightning invoice for a service |
check_payment_status | Check if payment was received |
check_job_status | Poll async jobs (video, 3D, audiobook) |
get_job_result | Get completed job results |
request_refund | Request a refund for a failed service |
vote_on_service | Upvote or downvote a planned service |
list_planned_services | See upcoming services and vote |
How It Works
- Agent calls
list_modelsto discover available models and pricing - Agent calls
create_payment— gets a Lightning invoice - Payment is made via the agent's Lightning wallet (e.g., lightning-wallet-mcp)
- Agent calls the tool (e.g.,
image,text) with thepaymentId - Result is returned — base64 image, text, URL, etc.
No API keys. No accounts. No rate limits tied to identity. Just Bitcoin and AI.
Payment via Agent Wallets
Pair with a Lightning wallet MCP server so your agent can pay autonomously:
{
"mcpServers": {
"sats4ai": {
"url": "https://sats4ai.com/api/mcp"
},
"lightning-wallet": {
"command": "npx",
"args": ["lightning-wallet-mcp"]
}
}
}
The agent uses lightning-wallet to pay invoices from sats4ai, enabling fully autonomous AI tool usage.
L402 API
For direct HTTP integration without MCP, use the L402 API:
# Step 1: Request -> get 402 + Lightning invoice
curl -X POST https://sats4ai.com/api/l402/generate-image \
-H "Content-Type: application/json" \
-d '{"input": {"prompt": "a cat in space"}}' -i
# Step 2: Pay the invoice with any Lightning wallet
# Step 3: Re-send with proof
curl -X POST https://sats4ai.com/api/l402/generate-image \
-H "Content-Type: application/json" \
-H "Authorization: L402 <macaroon>:<preimage>" \
-d '{"input": {"prompt": "a cat in space"}}'
Full L402 docs: sats4ai.com/l402 | Code examples: sats4ai-l402-examples
Service Discovery
Machine-readable endpoints for agent discovery:
# Full service catalog with pricing, quality benchmarks, and performance metadata
GET https://sats4ai.com/.well-known/l402-services
# MCP tool catalog with latency (p50/p95), reliability, and failure modes
GET https://sats4ai.com/api/mcp/discovery
# Semantic search — find tools by capability
GET https://sats4ai.com/api/discover?q=translate
# Per-service metadata with enums and input schemas
GET https://sats4ai.com/api/l402/{service}
Every paid tool includes performance metadata (latency p50/p95, reliability rating, known failure modes) so agents can make informed decisions about which tools to call and how long to wait.
Programmatic Usage
const { SERVER_URL, TOOLS, getClaudeConfig } = require("sats4ai-mcp");
console.log(SERVER_URL); // "https://sats4ai.com/api/mcp"
console.log(TOOLS); // ["image", "video", "text", ...]
console.log(getClaudeConfig()) // { mcpServers: { sats4ai: { url: "..." } } }
Links
- Website: sats4ai.com
- MCP Docs: sats4ai.com/mcp
- L402 API Docs: sats4ai.com/l402
- L402 Code Examples: github.com/cnghockey/sats4ai-l402-examples
- Service Discovery: sats4ai.com/.well-known/l402-services
- Semantic Search: sats4ai.com/api/discover
License
MIT
関連サーバー
Pace
Pace is the first MCP connector that brings wearable health data directly into Claude — no third-party dashboards, no manual exports, no extra apps. Most health apps lock your data behind their own UI. Pace breaks that wall: connect once, and Claude can analyze your sleep, activity, workouts, nutrition and recovery in natural language — with full visualizations inline.
Bazi Calculation
A professional Bazi (Chinese astrology) calculation server providing full analysis including four pillars, five elements, zodiac, and lunar dates with timezone support.
Zo
Zo is your personal vibe server in the cloud with 50+ tools and integrations. Add texting, email, calendar, research and more to your harness easily.
Sweeppea MCP
Manage sweepstakes, participants, and winner drawings with legal compliance in the US and Canada directly from your AI agent. Access requires an active Sweeppea subscription and API Key.
MISP MCP Server
Integrates with MISP (Malware Information Sharing Platform) to provide threat intelligence capabilities to Large Language Models.
Upstox MCP server
A MCP server for integrating with the Upstox trading API by Upstox.
Interior Design 3D MCP
7 tools for interior design 3D visualization — room planner, AR furniture placement, material switcher, lighting design, virtual room tours with SceneView.
ALMA_MCP
A Model Context Protocol (MCP) server that provides comprehensive access to the ALMA (Atacama Large Millimeter/submillimeter Array) archive through a clean, extensible architecture.
MediaSage
Tracks movies, books, and TV shows to provide intelligent recommendations based on your preferences.
Gaggiuino MCP
An MCP server for the Gaggiuino open-source espresso machine, providing real-time local network access to machine status and shot data.