Model Context Protocol (MCP) server for cryptocurrency portfolio management and wallet analytics. This MCP provides comprehensive tools for tracking, analyzing, and managing digital asset portfolios across multiple blockchains and wallets.
- Transport: HTTP (Remote only)
- URL:
https://mcp.hiveintelligence.xyz/hive_portfolio_wallet/mcp - Protocol: Model Context Protocol (MCP)
- Multi-wallet portfolio tracking
- Real-time balance monitoring
- Transaction history analysis
- P&L (Profit & Loss) calculations
- Portfolio performance metrics
- Asset allocation analysis
- DeFi position tracking
- NFT collection management
- Cross-chain wallet aggregation
- Gas fee optimization
- Risk assessment metrics
- Tax reporting assistance
Add to your Claude Desktop configuration file:
{
"mcpServers": {
"hive-portfolio-wallet": {
"url": "https://mcp.hiveintelligence.xyz/hive_portfolio_wallet/mcp",
"transport": "http"
}
}
}import { Client } from '@modelcontextprotocol/sdk';
const client = new Client({
name: 'portfolio-wallet-client',
version: '1.0.0'
});
await client.connect({
url: 'https://mcp.hiveintelligence.xyz/hive_portfolio_wallet/mcp',
transport: 'http'
});Retrieve wallet balances across chains
{
"tool": "get_wallet_balance",
"params": {
"address": "0x...",
"chains": ["ethereum", "polygon", "bsc"]
}
}Analyze portfolio performance over time
{
"tool": "track_portfolio_performance",
"params": {
"wallets": ["0x...", "0x..."],
"timeframe": "30d",
"metrics": ["roi", "volatility", "sharpe_ratio"]
}
}Detailed transaction history analysis
{
"tool": "analyze_transactions",
"params": {
"wallet": "0x...",
"filter": "defi",
"limit": 100
}
}Calculate profit and loss for positions
{
"tool": "calculate_pnl",
"params": {
"wallet": "0x...",
"include_unrealized": true,
"currency": "USD"
}
}Get gas fee optimization recommendations
{
"tool": "optimize_gas_fees",
"params": {
"pending_transactions": [...],
"target_speed": "medium"
}
}portfolio management, wallet analytics, cryptocurrency portfolio, digital assets, blockchain wallet, multi-chain, cross-chain, balance tracking, transaction history, P&L, profit and loss, ROI, return on investment, portfolio performance, asset allocation, DeFi positions, NFT tracking, gas optimization, risk metrics, crypto accounting, tax reporting, wallet aggregation, MCP, Model Context Protocol, Web3, decentralized finance, HTTP MCP server, remote MCP, Hive Intelligence, MetaMask, hardware wallet, cold storage, hot wallet
MIT
For issues and feature requests, please open an issue on GitHub.
Part of the Hive Intelligence suite of blockchain analytics MCP servers.