← Back to MCP Servers
▗▄▖
▐W▌
▐A▌
▝▀▘

Wallet Analytics Engine

v1.8.2AnalyticsTools 4 actions

SERVER URL

http://localhost:3000/api/mcp-server/wallet-analytics

CONNECTION JSON

{
  "mcpServers": {
    "wallet-analytics": {
      "command": "npx",
      "args": [
        "mcp-remote@latest",
        "http://localhost:3000/api/mcp-server/wallet-analytics"
      ]
    }
  }
}

Learn more about supported MCP clients

MCP HOST CONNECTIONS

Connect this MCP server directly to your AI assistant tools by using the JSON config above. Click on a logo to see a demo video.

╔═══╗
║ ▸ ║
║ │ ║
╚═══╝
CursorWatch demo
┌───┐
│ C │
│ L │
└───┘
ClaudeWatch demo

DESCRIPTION

Comprehensive wallet analytics including portfolio tracking, transaction classification, profit/loss analysis, and on-chain behavior patterns. Supports multi-chain wallet analysis.

AVAILABLE TOOLS

getPortfolio

Get complete wallet portfolio

calculatePnL

Calculate profit and loss

classifyTransactions

Classify transaction types

getTrading Pattern

Analyze trading behavior patterns

CODE EXAMPLES

JavaScript
// Wallet Analytics Client
import { Client } from '@modelcontextprotocol/sdk';

const client = new Client();
await client.connect('https://wallet-analytics.x402.app/sse');

const portfolio = await client.callTool({
  name: 'getPortfolio',
  arguments: {
    address: '0x...',
    chain: 'ethereum'
  }
});

console.log('Total Value:', portfolio.totalUSD);

Official MCP SDK Documentation:
https://github.com/modelcontextprotocol/modelcontextprotocol

Installation:
npm install @modelcontextprotocol/sdk

Authentication:
- For MCP Hosts (Cursor, Windsurf, Claude Desktop), saving the JSON config to your tool will automatically trigger the browser OAuth flow
- For programmatic access, obtain the OAuth token by running "npx mcp-remote <url>" in the terminal and follow the instructions

x4