loading…
Search for a command to run...
loading…
Description: Pay-per-request access to Claude and GPT models via Solana USDC using a Phantom wallet address. No accounts, no API keys — wallet-native authentica
Description: Pay-per-request access to Claude and GPT models via Solana USDC using a Phantom wallet address. No accounts, no API keys — wallet-native authentication.
Pay for AI inference with Solana. No API keys. Your wallet is your identity.
Connect Claude Desktop, Cursor, or any MCP-compatible AI tool to SolanaProx — pay per request using USDC or SOL directly from your Phantom wallet.
SolanaProx is an AI API gateway where your Phantom wallet is your account. Deposit USDC or SOL, make AI requests, pay per use. No signups. No subscriptions. No API key management.
Your Phantom Wallet → SolanaProx → Claude / GPT-4
↑ ↓
USDC balance AI response
npx solanaprox-mcp
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"solanaprox": {
"command": "npx",
"args": ["solanaprox-mcp"],
"env": {
"SOLANA_WALLET": "YOUR_PHANTOM_WALLET_ADDRESS"
}
}
}
}
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"solanaprox": {
"command": "npx",
"args": ["solanaprox-mcp"],
"env": {
"SOLANA_WALLET": "YOUR_PHANTOM_WALLET_ADDRESS"
}
}
}
}
Visit solanaprox.com, connect your Phantom wallet, and deposit USDC or SOL.
That's it. Claude can now make AI requests that pay automatically from your balance.
ask_aiSend a prompt to Claude or GPT-4. Cost deducted automatically from wallet balance.
Input:
prompt (required) — your question or task
model (optional) — claude-sonnet-4-20250514 (default) | gpt-4-turbo
max_tokens (optional) — 1-4096, default 1024
system (optional) — system prompt for context
check_balanceCheck your current USDC/SOL balance on SolanaProx.
Input:
wallet (optional) — defaults to configured SOLANA_WALLET
estimate_costEstimate request cost before making it.
Input:
prompt (required)
model (optional)
max_tokens (optional)
list_modelsList all available models and pricing.
| Model | Input | Output |
|---|---|---|
| Claude Sonnet 4 | $3.60/1M tokens | $18.00/1M tokens |
| GPT-4 Turbo | $12.00/1M tokens | $36.00/1M tokens |
Cached responses receive a 50% discount.
Typical request costs:
Pay only for what you use. No $20/month subscription burning while you sleep.
AI agents that pay for their own inference — no hardcoded API keys, no human in the loop.
// Agent pays autonomously on every request
const res = await fetch("https://solanaprox.com/v1/messages", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Wallet-Address": process.env.SOLANA_WALLET,
},
body: JSON.stringify({
model: "claude-sonnet-4-20250514",
max_tokens: 1024,
messages: [{ role: "user", content: prompt }],
}),
});
Let your app's users pay for AI features directly from their Phantom wallet. No backend payment processing required.
| Variable | Required | Description |
|---|---|---|
SOLANA_WALLET |
✅ | Your Phantom wallet address |
SOLANAPROX_URL |
❌ | Override API URL (default: https://solanaprox.com) |
git clone https://github.com/solanaprox/mcp-server
cd mcp-server
npm install
# Run the research agent
SOLANA_WALLET=your_wallet node agent-example.js research "Solana DeFi trends 2026"
# Check balance
SOLANA_WALLET=your_wallet node agent-example.js balance
# Quick demo
SOLANA_WALLET=your_wallet node agent-example.js
Coming soon — or use the REST API directly.
# Check balance
curl https://solanaprox.com/api/balance/YOUR_WALLET
# Make AI request
curl -X POST https://solanaprox.com/v1/messages \
-H "Content-Type: application/json" \
-H "X-Wallet-Address: YOUR_WALLET" \
-d '{
"model": "claude-sonnet-4-20250514",
"max_tokens": 1024,
"messages": [{"role": "user", "content": "Hello!"}]
}'
Part of the LPX ecosystem:
MIT License
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"solanaprox-mcp": {
"command": "npx",
"args": []
}
}
}