get-wallet-balance
Retrieve cryptocurrency wallet balance data for a specified address and blockchain network to monitor holdings and track portfolio performance.
Instructions
Get the balance data for a provided wallet address on a specific blockchain network.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Wallet address | |
| connectionId | Yes | The identifier of connection, which you received from /wallet/blockchains call response. |
Implementation Reference
- src/tools/toolFactory.ts:20-77 (handler)The generic handler function registered for each tool config, including get-wallet-balance. For non-local tools, it invokes universalApiHandler with the tool's endpoint, method, and parameters.toolConfigs.forEach((config) => { server.tool(config.name, config.description, config.parameters, async (params: Record<string, any>) => { // Handle local operations if (config.isLocal) { // Handle specific local tools if (config.name === 'save-share-token') { await saveToCache('shareToken', params.shareToken); return { content: [ { type: 'text', text: 'Share token saved successfully', }, ], }; } if (config.name === 'get-share-token') { const shareToken = await getFromCache('shareToken'); return { content: [ { type: 'text', text: shareToken ? shareToken : 'No share token found in cache', isError: !shareToken, }, ], }; } // Future local tools can be added here // Default response for unhandled local tools return { content: [ { type: 'text', text: 'Operation completed', }, ], }; } // Handle API operations const basePath = config.basePath || COINSTATS_API_BASE; const method = config.method || 'GET'; // Methods that typically have a request body const bodyMethods = ['POST', 'PUT', 'PATCH', 'DELETE']; // For GET/DELETE requests, all params go in the URL // For POST/PUT/PATCH, send params as the body if (bodyMethods.includes(method.toUpperCase())) { return universalApiHandler(basePath, config.endpoint, method, {}, params); } else { return universalApiHandler(basePath, config.endpoint, method, params); } });
- src/tools/toolConfigs.ts:165-174 (schema)Tool configuration object defining the name, description, endpoint, HTTP method, and Zod schema for input parameters (address and connectionId).{ name: 'get-wallet-balance', description: 'Get the balance data for a provided wallet address on a specific blockchain network.', endpoint: '/wallet/balance', method: 'GET', parameters: { address: z.string().describe('Wallet address'), connectionId: z.string().describe('The identifier of connection, which you received from /wallet/blockchains call response.'), }, },
- src/index.ts:17-19 (registration)Calls registerTools(server, allToolConfigs) to register all tools, including get-wallet-balance, with the MCP server.// Register all tools from configurations registerTools(server, allToolConfigs);
- src/services/request.ts:35-97 (helper)universalApiHandler: Executes the HTTP request to the CoinStats API endpoint, handles path and query parameters, API key authentication, and formats the response for MCP.export async function universalApiHandler<T>( basePath: string, endpoint: string, method: string = 'GET', params: Record<string, any> = {}, body?: any ): Promise<{ content: Array<{ type: 'text'; text: string; isError?: boolean }>; }> { try { // Handle path parameters - replace {paramName} in endpoint with actual values let processedEndpoint = endpoint; let processedParams = { ...params }; // Find all path parameters in the endpoint (e.g., {coinId}, {id}, {type}) const pathParamMatches = endpoint.match(/\{([^}]+)\}/g); if (pathParamMatches) { for (const match of pathParamMatches) { const paramName = match.slice(1, -1); // Remove { and } if (processedParams[paramName] !== undefined) { // Replace the placeholder with the actual value processedEndpoint = processedEndpoint.replace(match, processedParams[paramName]); // Remove the parameter from query params since it's now part of the path delete processedParams[paramName]; } else { throw new Error(`Required path parameter '${paramName}' is missing`); } } } // MCP clients might not support '~' in parameter names, so we replace '-' with '~' specifically for the /coins endpoint before making the request. if (endpoint === '/coins') { processedParams = Object.entries(processedParams).reduce((acc, [key, value]) => { acc[key.replace(/-/g, '~')] = value; return acc; }, {} as Record<string, any>); } const url = `${basePath}${processedEndpoint}`; const data = await makeRequestCsApi<T>(url, method, processedParams, body); if (!data) { return { content: [{ type: 'text', text: 'Something went wrong', isError: true }], }; } return { content: [ { type: 'text', text: JSON.stringify(data), }, ], }; } catch (error) { return { content: [{ type: 'text', text: `Error: ${error}`, isError: true }], }; } }
- src/config/constants.ts:1-2 (helper)API base URL and key used for all CoinStats API calls, including get-wallet-balance.export const COINSTATS_API_BASE = 'https://openapiv1.coinstats.app'; export const COINSTATS_API_KEY = process.env.COINSTATS_API_KEY || '';