wallet-portfolio
Wallet Portfolio Tracker API
チェーンをまたいだ暗号通貨ウォレットの全保有量 -- ETH、ERC-20トークン、USD価値。エージェント向けのポートフォリオ追跡。x402 による従量課金 (Base L2 上の USDC) -- APIキー不要、サインアップ不要、レート制限なし。
klymax402 マーケットプレイスの一部 -- AIエージェント向けの100のx402マイクロペイメントAPI、1つのウォレット、Base上のUSDC。
クイックスタート -- MCP
MCPクライアント設定 (Claude Desktop、Cursor、ElizaOS など) に追加:
{
"mcpServers": {
"wallet-portfolio": {
"url": "https://wallet-portfolio.api.klymax402.com/mcp"
}
}
}Related MCP server: AgentWallet MCP Server
クイックスタート -- HTTP (x402)
curl "https://wallet-portfolio.api.klymax402.com/api/portfolio?address=0x0000000000000000000000000000000000dEaD"
# -> 402 Payment Required, with an x402 payment challenge in the response bodyx402対応クライアント (@x402/fetch、x402-agent-tools、ATXP) は、402 -> 署名 -> 再試行のサイクルを自動的に処理します。
ツール
Tool | Method | Path | Price | 説明 |
| GET |
| $0.008 | 全トークンの残高とUSD価値を含む完全なポートフォリオを取得 |
| POST |
| $0.008 | 全トークンの残高とUSD価値を含む完全なポートフォリオを取得 (POSTバリアント) |
| GET |
| $0.003 | ETHとUSDCの残高のみを取得 |
| POST |
| $0.003 | ETHとUSDCの残高のみを取得 (POSTバリアント) |
wallet_get_portfolio
暗号通貨ウォレットのチェーンをまたいだ保有量を確認する必要がある場合に使用します。JSONで完全なポートフォリオの内訳を返します。
パラメータ
Name | Type | Required | 説明 |
| string | yes | ウォレットアドレス (0x...) |
| string | no | ブロックチェーンネットワーク (デフォルト: base) |
戻り値
nativeBalance-- USD価値付きのETH残高tokens-- シンボル、残高、USD価値、コントラクトアドレスを持つERC-20トークンの配列totalValueUsd-- USDでのポートフォリオ合計価値chain-- 照会されたネットワーク
応答例:
{"nativeBalance":{"symbol":"ETH","balance":"1.234","valueUsd":3827.50},"tokens":[{"symbol":"USDC","balance":"500.00","valueUsd":500.00}],"totalValueUsd":4327.50,"chain":"base"}使用する場合: スワップを実行してウォレットに十分な残高があることを確認する場合。ポートフォリオ追跡、残高確認、エージェントの自己報告に不可欠です。
使用しない場合: ガス価格 (gas_get_current_price を使用)、スワップ見積もり (dex_get_swap_quote を使用)、利回り機会 (defi_find_best_yields を使用)。
wallet_get_portfolio
暗号通貨ウォレットのチェーンをまたいだ保有量を確認する必要がある場合に使用します。JSONで完全なポートフォリオの内訳を返します。
パラメータ
Name | Type | Required | 説明 |
| string | yes | ウォレットアドレス (0x...) |
| string | no | ブロックチェーンネットワーク (デフォルト: base) |
戻り値
nativeBalance-- USD価値付きのETH残高tokens-- シンボル、残高、USD価値、コントラクトアドレスを持つERC-20トークンの配列totalValueUsd-- USDでのポートフォリオ合計価値chain-- 照会されたネットワーク
応答例:
{"nativeBalance":{"symbol":"ETH","balance":"1.234","valueUsd":3827.50},"tokens":[{"symbol":"USDC","balance":"500.00","valueUsd":500.00}],"totalValueUsd":4327.50,"chain":"base"}使用する場合: スワップを実行してウォレットに十分な残高があることを確認する場合。ポートフォリオ追跡、残高確認、エージェントの自己報告に不可欠です。
使用しない場合: ガス価格 (gas_get_current_price を使用)、スワップ見積もり (dex_get_swap_quote を使用)、利回り機会 (defi_find_best_yields を使用)。
wallet_get_balance
ウォレットのETHとUSDCの残高のみをすばやく確認する必要がある場合に使用します。軽量なJSON応答を返します -- 完全なポートフォリオよりも安価です。
パラメータ
Name | Type | Required | 説明 |
| string | yes | ウォレットアドレス (0x...) |
| string | no | ブロックチェーンネットワーク (デフォルト: base) |
戻り値
ethBalance-- USD価値付きのネイティブETH残高usdcBalance-- USD価値付きのUSDC残高chain-- 照会されたネットワーク
応答例:
{"ethBalance":{"balance":"2.5","valueUsd":7750.00},"usdcBalance":{"balance":"1000.00","valueUsd":1000.00},"chain":"base"}使用する場合: ETHとUSDCのみに関心がある場合の取引前の残高確認。wallet_get_portfolio よりも高速で安価です。
使用しない場合: 全トークンを含む完全なポートフォリオ (wallet_get_portfolio を使用)、ガス価格 (gas_get_current_price を使用)。
wallet_get_balance
ウォレットのETHとUSDCの残高のみをすばやく確認する必要がある場合に使用します。軽量なJSON応答を返します -- 完全なポートフォリオよりも安価です。
パラメータ
Name | Type | Required | 説明 |
| string | yes | ウォレットアドレス (0x...) |
| string | no | ブロックチェーンネットワーク (デフォルト: base) |
戻り値
ethBalance-- USD価値付きのネイティブETH残高usdcBalance-- USD価値付きのUSDC残高chain-- 照会されたネットワーク
応答例:
{"ethBalance":{"balance":"2.5","valueUsd":7750.00},"usdcBalance":{"balance":"1000.00","valueUsd":1000.00},"chain":"base"}使用する場合: ETHとUSDCのみに関心がある場合の取引前の残高確認。wallet_get_portfolio よりも高速で安価です。
使用しない場合: 全トークンを含む完全なポートフォリオ (wallet_get_portfolio を使用)、ガス価格 (gas_get_current_price を使用)。
エージェントプロンプトの例
暗号通貨ウォレットのチェーンをまたいだ保有量を確認
暗号通貨ウォレットのチェーンをまたいだ保有量を確認
ウォレットのETHとUSDCの残高のみをすばやく確認
支払い
プロトコル: x402 -- HTTPネイティブの従量課金、サインアップ不要、APIキー不要
ネットワーク: Base L2 (
eip155:8453)資産: USDC
ファシリテーター: Coinbase CDP (プライマリ)、PayAI (フォールバック)
ATXP 経由でもアクセス可能 (OAuthラップされたx402、RFC 9728保護リソースメタデータ)
klymax402 の一部
AIエージェント向けの100のx402マイクロペイメントAPI -- 1つのウォレット、Base上のUSDC、サインアップ不要。
完全なAPIリファレンス: https://klymax402.com/llms-full.txt
ライブ統計: https://klymax402.com/stats
ライセンス
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI agents to retrieve real-time data on wallet DeFi positions, token balances, and NFT holdings across multiple blockchains. It supports hundreds of protocols and provides specialized tools for chain-specific or protocol-specific portfolio analysis.8163MIT
- AlicenseAqualityDmaintenanceProvides permissionless wallet infrastructure for AI agents to manage wallets, sign transactions, and handle tokens across Solana and all EVM-compatible chains. It includes 29 specialized tools for on-chain operations, featuring built-in security guards and automated x402 payment processing without KYC requirements.293343MIT
- AlicenseAqualityCmaintenanceEnables AI agents to fetch live multi-chain portfolio, token info, gas prices, and token prices across Ethereum, Base, Polygon, Arbitrum, and Optimism with a single call. No API key required.4MIT
- AlicenseAqualityCmaintenanceEnables AI agents to access crypto/web3 data across 5 chains with pay-per-call billing in USDC via x402, no API key required, and built-in spend caps.3636MIT
Related MCP Connectors
Token swaps and honeypot/rug checks for AI agents on 8 chains, paid per-call in USDC via x402.
Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.
63 pay-per-call tools for agents: vision, text, data, web, blockchain. USDC on Base via x402.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Br0ski777/wallet-portfolio-x402'
If you have feedback or need assistance with the MCP directory API, please join our Discord server