No accounts. No API keys. Just your Solana wallet. Connect via MCP and start running inference immediately.
Get Started โConnect your agent in 3 lines of code
from mcp import ClientSession # Connect to ASG Agent Cloud MCP server async with ClientSession("wss://mcp.asgcompute.com") as session: # Run inference - wallet IS your identity result = await session.call_tool( "run_inference", { "model": "deepseek-v3", "messages": [{"role": "user", "content": "Hello!"}], "payment_wallet": "YOUR_SOLANA_WALLET" } ) # If 402 Payment Required โ sign USDC transaction # Then retry with payment proof print(result.content)
๐ See full documentation at /developers
Enterprise-grade inference at unbeatable prices
| Model | Best For | Price / 1K Tokens | Latency |
|---|---|---|---|
| DeepSeek V3 Best Value | Coding, General | $0.001 USDC | ~50ms |
| Qwen 3 235B Flagship | Complex Reasoning | $0.003 USDC | ~120ms |
| Llama 3.3 70B | Fast Inference | $0.0008 USDC | ~30ms |
| MiniMax M2.1 Agentic | Multi-step Tasks | $0.005 USDC | ~80ms |
Pay per request in USDC. No minimums, no commitments.
Everything your agent needs via standard MCP protocol
get_pricing() # Get current prices for all resources check_balance() # Check USDC balance for a wallet run_inference() # Execute standard model inference (OpenRouter) run_modal() # Execute custom serverless models provision_gpu() # Allocate dedicated GPU resources terminate_compute() # Stop GPU resources create_rag_index() # Create a knowledge base query_rag() # Query a knowledge base