vaults.fyi
  • General
    • 🏦Overview
    • 💡Use Cases
      • For Wallets and Apps
        • Monetize Your Wallet Seamlessly & Securely
      • 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
    • Introduction
      • Market data
      • Transactional support
      • Portfolio tracking
      • Personalized insights
  • Endpoints
    • General
    • Detailed Vaults
    • Historical
    • Portfolio
    • Transactions
    • Legacy (v1) endpoints
      • v1 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
      • v1 Contextual insights
        • Top vault options for address
        • Get single top option for address
        • [Etherscan cards] Get top USD, top ETH vault for address
      • v1 Generate payloads
        • Prepare calldata
          • Supply/Deposit
          • Withdraw/Redeem
            • Request redeem
            • Claim redeem
          • Claim rewards
        • Get contract interaction details
        • Get supported assets
        • Get supported vaults
      • v1 Position tracking
        • 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
    • Gauntlet
  • Plans
    • Credits
      • Credits (v1 endpoints)
  • 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.fyiNextIntroduction

Last updated 1 month 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/