Add Ainfera to Claude Desktop, Cursor, VS Code, or any MCP-aware client. 30 seconds of config.
inference— routed inference across the Ainfera model catalog (200+ models, seeGET /v1/models)register_agent— register a new Agent under a tenanttopup_wallet— add USDC to an agent's walletget_wallet— check remaining capsread_audit_chain/verify_audit_chain— pull and verify hash-chained receipts
Plus the rest of the platform surface. Full list in the mcp-server tool catalog.
Edit your config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"ainfera": {
"url": "https://mcp.ainfera.ai",
"headers": {
"Authorization": "Bearer ainfera_REPLACE_ME"
}
}
}
}Sample provided at claude-desktop-config.json.
Restart Claude Desktop, then type @ainfera to use the tools.
Add to .cursor/mcp.json in your repo, or ~/.cursor/mcp.json
globally:
{
"mcpServers": {
"ainfera": {
"url": "https://mcp.ainfera.ai",
"headers": {
"Authorization": "Bearer ainfera_REPLACE_ME"
}
}
}
}Sample at cursor-mcp.json.
Validate before restart:
./scripts/validate-mcp-config.sh cursor-mcp.jsonAdd to .vscode/mcp.json:
{
"servers": {
"ainfera": {
"url": "https://mcp.ainfera.ai",
"headers": {
"Authorization": "Bearer ainfera_REPLACE_ME"
}
}
}
}Sample at vscode-mcp.json.
Same shape — point at https://mcp.ainfera.ai with your ainfera_*
Bearer token. Get a free key at https://app.ainfera.ai/signup.
After connecting:
@ainfera register a new agent named "my-research-bot" with a $5 daily cap
@ainfera run inference: "Summarize the EU AI Act Annex IV" using ainfera-inference
@ainfera show the audit chain for my-research-bot
Each call is hash-chained and signed. Open the audit URL the tool returns to verify the receipt offline.
- ainfera-openai-compatible — universal OpenAI-compat wedge (the simplest chat-completions endpoint)
- ainfera-langchain — LangChain
- ainfera-crewai — CrewAI
- ainfera-google-adk — Google ADK
- ainfera-letta — Letta (MemGPT)
- ainfera-langgraph — LangGraph
- ainfera-llamaindex — LlamaIndex
Apache 2.0. © Ainfera Inc. 2026.