← getava.xyz
INDIVIDUAL MCP TOOL
ava_agent_record
Read an agent's track record before delegating capital to it.
LIVE ENDPOINT
https://api.getava.xyz/mcp
Connect to this endpoint to inspect the live schema for ava_agent_record and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.ava]
url = "https://api.getava.xyz/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"ava": {
"type": "http",
"url": "https://api.getava.xyz/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: ava
Remote MCP URL: https://api.getava.xyz/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"ava": {
"url": "https://api.getava.xyz/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"ava": {
"type": "http",
"url": "https://api.getava.xyz/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "ava",
"transport": "streamable-http",
"url": "https://api.getava.xyz/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
ava_copilot_turn— Natural-language copilot turn: message → intent → plan → testnet quote.ava_approve_execute— Human-in-the-loop approve: the one call that actually settles a plan from ava_copilot_turn.ava_lend_execute— Execute a REAL lend against one of your mandates.ava_portfolio— Simulated testnet portfolio for a userId (same data as GET /v1/portfolio): seeded balances, fills, optional portal.ava_session— Create or resume a human/org identity (userId), the first call in the loop.ava_create_agent— Register an agent instance under userId, before it has a wallet or a mandate.ava_provision_wallet— Provision a Turnkey-custodied wallet address for this userId, scoped to one chain family (evm | solana | sui).ava_preview_tx— Pre-sign preview: build the exact venue artifact (CoW EIP-712 order or unsigned Solana transaction) for a pending plan against the provisioned Turnkey wallet, simulate it where supported, and return it UNSIGNED.