← aarna.ai

INDIVIDUAL MCP TOOL

get_vault_portfolio

Get the underlying token portfolio and breakdown data for an ATV vault from the Aarna engine database.

aarna.ainone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name, description or schema mentions credentials.

Parent endpoint

aarna.ai

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.atv]
url = "https://atv-api.aarna.ai/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "atv": {
      "type": "http",
      "url": "https://atv-api.aarna.ai/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: atv
Remote MCP URL: https://atv-api.aarna.ai/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": {
    "atv": {
      "url": "https://atv-api.aarna.ai/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "atv": {
      "type": "http",
      "url": "https://atv-api.aarna.ai/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "atv",
  "transport": "streamable-http",
  "url": "https://atv-api.aarna.ai/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_vaults — List all available ATV vaults.
  • get_vault — Get metadata for a specific ATV vault by its contract address.
  • get_vault_nav — Get the current Net Asset Value (NAV) of an ATV vault in USD.
  • get_vault_tvl — Get the current Total Value Locked (TVL) of an ATV vault in USD.
  • get_vault_apy — Get the current APY breakdown (base + reward + total) for an ATV vault.
  • build_deposit_tx — Build the transaction steps required to deposit tokens into an ATV vault.
  • build_withdraw_tx — Build the transaction steps required to withdraw vault shares from an ATV vault and receive an output token.
  • get_deposit_status — Check whether deposits are currently paused on an ATV vault.