Sats4AI

v1.0.0

Bitcoin-powered AI tools marketplace via MCP. Generate images (Flux, Seedream, Recraft), text (Kimi K2.5, DeepSeek, GPT-OSS), video (Kling V3), music, speech...

0· 251·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for cnghockey/sats4ai.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Sats4AI" (cnghockey/sats4ai) from ClawHub.
Skill page: https://clawhub.ai/cnghockey/sats4ai
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install sats4ai

ClawHub CLI

Package manager switcher

npx clawhub@latest install sats4ai
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (a Lightning-paid AI marketplace) align with the instructions: the SKILL.md tells the agent to add the Sats4AI MCP server URL and how to invoke payment + tool endpoints. Nothing in the document requires unrelated cloud credentials or system-wide access.
Instruction Scope
The runtime instructions are focused on connecting to the sats4ai MCP and using a Lightning wallet MCP to pay invoices. The doc also suggests installing/using third-party wallet tools (e.g., npm lightning-wallet-mcp, @getalby/mcp, lnget) — these are relevant to making Lightning payments but are external operations the agent or user would run. There’s no instruction to read unrelated system files or exfiltrate environment variables.
Install Mechanism
This is an instruction-only skill with no install spec and no code files. The SKILL.md mentions installing wallet tools (via npm) as optional user steps, but the skill itself does not perform downloads or declare an install mechanism.
Credentials
The skill declares no required environment variables, credentials, or config paths. Recommendations to configure a wallet MCP (which may require wallet-specific credentials or connection strings) are proportional to the payment-focused purpose and are optional alternatives rather than hard requirements.
Persistence & Privilege
always is false and the skill does not request permanent presence or elevated platform-level privileges. It does not instruct modifying other skills or system-wide agent settings beyond adding an MCP server entry for itself (which is expected for an MCP integration).
Assessment
This skill appears to do what it claims: route generation requests through a Lightning-payments MCP server. Before installing/use: verify you trust https://sats4ai.com (it will be able to bill your Lightning wallet), prefer timeout/maximum-cost protections on auto-pay tools, avoid giving long-lived wallet credentials to untrusted code, and if you install suggested third-party wallet packages (npm or lnget), review those tools separately. Be mindful that sending SMS or generating video/music can incur higher costs — set per-request spending limits and test with small payments first.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Clawdis
latestvk97ajpk097qkhgz1mandapg0v182eadn
251downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Sats4AI — Bitcoin-Powered AI Tools

Sats4AI is an MCP server that gives you access to 10+ AI tools, paid per use with Bitcoin Lightning. No API key, no signup — the Lightning payment is the only authentication.

Setup

Add the Sats4AI MCP server to your openclaw.json:

{
  "mcpServers": {
    "sats4ai": {
      "url": "https://sats4ai.com/api/mcp"
    }
  }
}

That's it. You now have access to all tools below.

You Need a Lightning Wallet

To pay invoices, add a wallet MCP server alongside Sats4AI. The easiest options:

Option A: Lightning Wallet MCP (recommended)

npm install -g lightning-wallet-mcp
lw register --name "my-agent"   # save the API key
lw deposit 10000                # fund with any wallet

Option B: Alby MCP Server

{
  "mcpServers": {
    "sats4ai": {
      "url": "https://sats4ai.com/api/mcp"
    },
    "wallet": {
      "command": "npx",
      "args": ["-y", "@getalby/mcp"],
      "env": {
        "NWC_CONNECTION_STRING": "nostr+walletconnect://YOUR_CONNECTION_STRING"
      }
    }
  }
}

Get your NWC connection string from Alby Hub.

Available Tools

After connecting, you can call these tools:

Payment Flow

  1. create_payment — Get a Lightning invoice for any service. Specify the tool and model.
  2. Pay the invoice — Using your wallet (Lightning Wallet MCP, Alby, or any Lightning wallet).
  3. Call the tool — Pass the paymentId to execute the service.

AI Tools

ToolWhat it doesCost (Sats)
generate_imageText to image (Flux, Seedream, Recraft)100-200
generate_textChat with Kimi K2.5, DeepSeek, GPT-OSS5-15+
generate_videoText/image to video (Kling V3)2,500
generate_musicAI-composed songs with vocals (MiniMax)200
generate_speechText to speech (MiniMax voices)300
transcribe_speechAudio to text (Whisper)10
generate_3d_modelImage to 3D model (Hunyuan 3D)350
analyze_imageVision / image analysis (Qwen-VL)21
convert_fileConvert between 200+ file formats50
send_smsSend SMS to any countryvaries

Example: Generate an Image

1. Call create_payment with tool: "image", model: "Best"
2. Pay the returned Lightning invoice (e.g., lw pay <invoice>)
3. Call generate_image with paymentId, prompt: "a sunset over mountains", model: "Best"
4. Receive base64 image data

Example: Generate Text with Kimi K2.5

1. Call create_payment with tool: "text-generation", model: "Best"
2. Pay the Lightning invoice (~15 Sats minimum)
3. Call generate_text with paymentId and your messages
4. Receive the text response

Kimi K2.5 rivals Claude 4.6 and GPT-5.2 in coding, math, and reasoning — at ~$0.006 per request.

L402 Alternative

You can also use Sats4AI via L402 endpoints with lnget:

lnget --max-cost 500 POST https://sats4ai.com/api/l402/image \
  -d '{"input":{"prompt":"a sunset over mountains"},"model":"Best"}'

No MCP needed — lnget auto-pays the Lightning invoice on 402 responses.

Privacy

  • No signup, no account, no email
  • No API key — payment is the credential
  • No KYC or identity verification
  • No prompts or outputs logged

Links

Comments

Loading comments...