MCP Setup
Configure Claude Desktop or other MCP clients to query Verus blockchain data.
Prerequisites
- Claude Desktop (macOS or Windows)
- ChainVue API key
Step 1: Get Your API Key
- Sign up at chainvue.io/signup
- Go to Dashboard → API Keys
- Create a new key and copy it
Step 2: Configure Claude Desktop
Open your Claude Desktop configuration file:
# macOS ~/Library/Application Support/Claude/claude_desktop_config.json # Windows %APPDATA%\Claude\claude_desktop_config.json
Add the ChainVue MCP server configuration:
{
"mcpServers": {
"chainvue": {
"url": "https://mcp.chainvue.io/sse",
"headers": {
"Authorization": "Bearer your_api_key_here"
}
}
}
}Replace your_api_key_here with your actual API key.
Step 3: Restart Claude Desktop
Quit and reopen Claude Desktop. You should see a hammer icon indicating available tools. Click it to verify ChainVue tools are loaded.
Step 4: Test It
Try asking Claude:
"What's the current block height on Verus testnet?"
Claude will use the get_sync_state tool to fetch and display the data.
Troubleshooting
Tools not showing up
Make sure you restarted Claude Desktop after editing the config file.
Authentication errors
Verify your API key is correct and has not expired.
Connection timeout
Check your internet connection and firewall settings.