Atv By Aarna
About
Atv By Aarna is an MCP server that provides AI-native access to Aarna’s tokenized yield vaults on Ethereum and Base. It offers 20 tools for vault discovery, performance metrics, transaction building, and portfolio tracking. The server is aimed at developers and AI agents who…
Details
- Author
- aarna-ai
- Downloads
- 307
- Categories
- Developer Tools
Jump to
- 20 tools for vault management and analytics
- Discovery and metadata for vaults across Ethereum and Base
- Real-time NAV, TVL, and APY breakdowns
- Instant and queued transaction builders (deposit, withdraw, stake, unstake)
- Historical NAV and TVL data for trend analysis
- User portfolio and investment tracking
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Atv By AarnaCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Obtain an API key by reaching out to dev@aarnalab.dev, then configure the MCP client with the Streamable HTTP endpoint https://atv-api.aarna.ai/mcp and the x-api-key header. Setup examples are provided for Claude Desktop, Claude Code, Cursor, VS Code (Copilot), and mcp-remote. Once configured, you can call any of the 20 tools to discover vaults, check APY, build deposit/withdraw transactions, and view user investments.
list_vaults
List all available ATV vaults. Returns vault metadata including address, chain, withdraw type, contract type, and supported deposit tokens with balances.
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. Returns an ordered array of transactions (approve then deposit) that must be sent in order.
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. Use this before building a deposit transaction to avoid sending a doomed tx.
get_withdraw_status
Check whether withdrawals are currently paused on an ATV vault. Use this before building a withdraw transaction.
get_queue_withdraw_status
Check whether queued (delayed) withdrawals are currently paused on an ATV vault.
build_stake_tx
Build the transaction steps to stake vault tokens into a timelock contract for boosted rewards. Returns an approve step (if needed) and a stake step.
build_unstake_tx
Build the transaction step to unstake vault tokens from a timelock contract.
build_queue_withdraw_tx
Build the transaction step to initiate a queued (delayed) withdrawal from an ATV vault. The withdrawal is not instant — it must be redeemed later once processed.
build_unqueue_withdraw_tx
Build the transaction step to cancel a pending queued withdrawal request from an ATV vault.
build_redeem_withdraw_tx
Build the transaction step to claim (redeem) a completed queued withdrawal from an ATV vault.
get_vault_portfolio
Get the underlying token portfolio and breakdown data for an ATV vault from the Aarna engine database.
get_historical_nav
Get historical NAV (Net Asset Value) data points for an ATV vault over a specified period. Useful for charting price trends.
get_historical_tvl
Get historical TVL (Total Value Locked) data points for an ATV vault over a specified period. Useful for charting TVL trends.
get_total_tvl
Get the total TVL (Total Value Locked) across all ATV vaults from the Aarna engine database.
get_user_investments
Get a user's investment portfolio and position data for a specific ATV vault.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"atv by aarna": {
"atv": {
"url": "https://atv-api.aarna.ai/mcp",
"headers": {
"x-api-key": "atv_9068ba33deddc767596afc8a507b8fa950eb0f0466193525"
}
}
}
}
}
McpServers
{
"atv": {
"url": "https://atv-api.aarna.ai/mcp",
"headers": {
"x-api-key": "atv_9068ba33deddc767596afc8a507b8fa950eb0f0466193525"
}
}
}
ATV — DeFi Yield Vault MCP Server
AI-native access to Aarna's tokenized yield vaults on Ethereum and Base. 20 tools for vault discovery, performance metrics, transaction building, and portfolio tracking.
API Base URL: https://atv-api.aarna.ai
MCP Endpoint: https://atv-api.aarna.ai/mcp (Streamable HTTP)
API Docs: https://atv-api.aarna.ai/docs
API Access
The hosted API at https://atv-api.aarna.ai is available to anyone with a valid API key. All requests require an x-api-key header.
To get an API key, reach out to us at dev@aarnalab.dev.
Quick Start (30 seconds)
Once you have your API key, add the config to your client:
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"atv": {
"url": "https://atv-api.aarna.ai/mcp",
"headers": { "x-api-key": "YOUR_API_KEY" }
}
}
}
Claude Code
claude mcp add atv --transport http https://atv-api.aarna.ai/mcp --header "x-api-key: YOUR_API_KEY"
Cursor
Create .cursor/mcp.json in your project root:
{
"mcpServers": {
"atv": {
"url": "https://atv-api.aarna.ai/mcp",
"headers": { "x-api-key": "YOUR_API_KEY" }
}
}
}
VS Code (Copilot)
Add to .vscode/settings.json:
{
"mcp": {
"servers": {
"atv": {
"url": "https://atv-api.aarna.ai/mcp",
"headers": { "x-api-key": "YOUR_API_KEY" }
}
}
}
}
mcp-remote (fallback for stdio-only clients)
{
"mcpServers": {
"atv": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://atv-api.aarna.ai/mcp", "--header", "x-api-key:YOUR_API_KEY"]
}
}
}
Available Tools (19)
Discovery & Metadata
| Tool | Description | |------|-------------| |list_vaults | List all vaults, optionally filter by chain |
| get_vault | Get metadata for a specific vault by address |
Performance Metrics
| Tool | Description | |------|-------------| |get_vault_nav | Current NAV (Net Asset Value) in USD |
| get_vault_tvl | Current TVL (Total Value Locked) in USD |
| get_vault_apy | APY breakdown: base + reward + total |
Operational Status
| Tool | Description | |------|-------------| |get_deposit_status | Whether deposits are paused |
| get_withdraw_status | Whether withdrawals are paused |
| get_queue_withdraw_status | Whether queued withdrawals are paused |
Transaction Builders (Instant)
| Tool | Description | |------|-------------| |build_deposit_tx | Build approve + deposit transaction steps |
| build_withdraw_tx | Build withdrawal transaction steps |
| build_stake_tx | Build approve + stake steps (timelock vaults) |
| build_unstake_tx | Build unstake step (timelock vaults) |
Transaction Builders (Queued)
| Tool | Description | |------|-------------| |build_queue_withdraw_tx | Initiate a queued withdrawal |
| build_unqueue_withdraw_tx | Cancel a pending queued withdrawal |
| build_redeem_withdraw_tx | Claim a completed queued withdrawal |
Analytics
| Tool | Description | |------|-------------| |get_vault_portfolio | Underlying token portfolio |
| get_historical_nav | NAV data points over a period (7, 30, 60, 360, max) |
| get_historical_tvl | TVL data points over a period (7, 30, 60, 360, max) |
| get_total_tvl | Platform-wide or per-vault TVL |
| get_user_investments | User portfolio and positions |
Example Prompts
- "What DeFi vaults are available on Base?"
- "What's the current APY for vault 0x...?"
- "Build a deposit of 1000 USDC into vault 0x..."
- "Show my portfolio across all Aarna vaults"
- "Is the queue-withdraw paused on vault 0x...?"
REST API
All endpoints require x-api-key header and are prefixed with /v1.
Vault Endpoints
| Method | Path | Description | |--------|------|-------------| | GET |/v1/vaults | List all available vaults |
| GET | /v1/vaults/tvl | Platform-wide TVL |
| GET | /v1/vaults/:address | Vault metadata |
| GET | /v1/vaults/:address/nav | NAV price |
| GET | /v1/vaults/:address/tvl | Vault TVL |
| GET | /v1/vaults/:address/apy | APY breakdown |
| GET | /v1/vaults/:address/deposit-status | Deposit pause status |
| GET | /v1/vaults/:address/withdraw-status | Withdraw pause status |
| GET | /v1/vaults/:address/queue-withdraw-status | Queue-withdraw pause status |
| GET | /v1/vaults/:address/portfolio | Token portfolio |
| GET | /v1/vaults/:address/historical-nav | Historical NAV (days: 7,30,60,360,max) |
| GET | /v1/vaults/:address/historical-tvl | Historical TVL (days: 7,30,60,360,max) |
Transaction Endpoints
| Method | Path | Description | |--------|------|-------------| | GET |/v1/deposit-tx | Build deposit calldata |
| GET | /v1/withdraw-tx | Build withdraw calldata |
| GET | /v1/stake-tx | Build stake calldata |
| GET | /v1/unstake-tx | Build unstake calldata |
| GET | /v1/queue-withdraw-tx | Build queue-withdraw calldata |
| GET | /v1/unqueue-withdraw-tx | Build unqueue-withdraw calldata |
| GET | /v1/redeem-withdraw-tx | Build redeem-withdraw calldata |
Other Endpoints
| Method | Path | Description | |--------|------|-------------| | GET |/v1/user-investments | User portfolio data |
| ALL | /mcp | MCP server (Streamable HTTP) |
Unauthenticated
| Method | Path | Description | |--------|------|-------------| | GET |/health | Health check |
| GET | /openapi.json | OpenAPI 3.1 spec |
| GET | /docs | Interactive API reference |
| GET | /llms.txt | LLM-friendly documentation (llms.txt spec) |
| GET | /.well-known/agent.json | A2A agent card |
TypeScript SDK
import { AtvClient } from '@atv/sdk';
const client = new AtvClient({
apiKey: 'atv_...',
baseUrl: 'https://atv-api.aarna.ai',
});
const vaults = await client.vaults.list({ chain: 'base' });
const nav = await client.vaults.nav('0xVaultAddress');
Self-Hosting
docker build -t atv-api \
--build-arg AWS_ACCESS_KEY_ID=... \
--build-arg AWS_SECRET_ACCESS_KEY=... \
--build-arg AWS_DEFAULT_REGION=us-east-1 .
docker run -p 3000:3000 atv-api
Required environment variables (set in AWS Secrets Manager under atv-sdk):
- DATABASE_URL — PostgreSQL connection string
- REDIS_URL — Redis host:port
- RPC_URL_ETHEREUM — Ethereum JSON-RPC endpoint
- RPC_URL_BASE — Base JSON-RPC endpoint
- STRAPI_URL — CMS URL
- STRAPI_API_TOKEN — CMS API token
- ENGINE_BASE_URL — Aarna engine API
Development
Prerequisites
- Node.js 20+ - pnpm - PostgreSQL - RedisSetup
pnpm install
cp .env.example apps/api/.env
Fill in environment variables
pnpm migrate
pnpm dev
API: http://localhost:3000 | Docs: http://localhost:3000/docs
Repository Structure
atv-sdk/
├── apps/api/ # Express API server + MCP server
├── packages/sdk/ # TypeScript SDK (@atv/sdk)
├── packages/mcp-server/ # npm connector package (@aarna-ai/mcp-server-atv)
├── server.json # MCP registry manifest
└── docs/ # Guides
Build
pnpm build
API: apps/api/dist/
SDK: packages/sdk/dist/ (CJS + ESM)
Customer Onboarding
See docs/customer-onboarding.md for how to generate API keys, manage tiers, revoke access, and run admin queries.
License
MIT — see LICENSE.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





