vaults.fyi
  • General
    • 🏦Overview
    • 💡Use Cases
      • For Wallets and Apps
      • For Analysts
      • For Protocols & Product Teams
    • 🔎Methodology
      • vaults.fyi USD benchmark rate
      • vaults.fyi ETH benchmark rate
    • ❓FAQ
      • Vault requirements for inclusion on vaults.fyi
    • 🤖AI
  • API
    • vaults.fyi API Overview
      • Insights API
      • Earn API
        • Product demo
        • Flow diagrams
      • Plans
        • Credits
    • Endpoints
      • Market data
        • Get historical data
          • Get historical APY and TVL data on single vault over timestamp range
          • Get historical APY on single vault over timestamp range
          • Get historical TVL on single vault at single timestamp
          • Get historical APY on single vault at single timestamp
        • Get data for multiple vaults
        • Get data on single vault
          • Get APY on single vault
        • Get benchmark rates
        • Get supported vaults, networks & tokens
          • /vaults
          • /networks
          • /tokens
          • /tags
      • Contextual insights
        • Top vault options for address
        • Get single top option for address
        • [Etherscan cards] Get top USD, top ETH vault for address
      • Generate payloads (Earn API)
        • Prepare calldata
          • Supply/Deposit
          • Withdraw/Redeem
            • Request redeem
            • Claim redeem
          • Claim rewards
        • Get contract interaction details
        • Get supported assets
        • Get supported vaults
      • Position tracking (Portfolio API)
        • Get user balances
        • Get user positions
        • Get list of past vault txns by user address
        • Get estimated returns for user's vault position
  • Case Studies
    • Kraken Wallet
    • Etherscan Cards
  • Links
    • vaults.fyi
    • X
    • Farcaster
    • Wallfacer Labs
Powered by GitBook
On this page
  1. General

AI

Brief guide on how to configure Claude Desktop to use Vaults.fyi via the MCP server.

PreviousVault requirements for inclusion on vaults.fyiNextvaults.fyi API Overview

Last updated 27 days ago

(MacOS Instructions)

  • Install Homebrew (if you don’t already have it)

    • Visit and follow the instructions there.

  • Install Node.js via Homebrew

    1. Update Homebrew:

      brew update
    2. Install Node.js (includes npm):

      brew install node
  • Add the Vaults.fyi MCP server configuration

    1. Open the file:

      ~/Library/Application\ Support/Claude/claude_desktop_config.json
    2. Insert the following snippet into the file (replace your-api-key with your personal Vaults.fyi API key):

      {
        "mcpServers": {
          "vaults": {
            "command": "npx",
            "args": [
              "@vaultsfyi/mcp"
            ],
            "env": {
              "VAULTS_API_KEY": "your-api-key"
            }
          }
        }
      }
  • Restart Claude Desktop

    • Once you’ve saved the configuration file, restart Claude Desktop. The Vaults.fyi MCP server should now be available for your use. The small "hammer icon" at the bottom of Claude window should say "1 MCP Tool available" (or more if you installed others).

🤖
https://brew.sh/