up_ping
Test Up Banking API connectivity and verify authentication status to ensure banking data integration functions properly.
Instructions
Test the Up API connection and verify authentication is working
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:385-395 (handler)Handler logic for the 'up_ping' tool. Dispatches to UpApiClient.ping() and returns the result as formatted JSON text content.case "up_ping": { const result = await client.ping(); return { content: [ { type: "text", text: JSON.stringify(result, null, 2), }, ], }; }
- src/index.ts:218-226 (schema)Tool schema definition for 'up_ping', including name, description, and empty input schema (no parameters required).{ name: "up_ping", description: "Test the Up API connection and verify authentication is working", inputSchema: { type: "object", properties: {}, }, },
- src/index.ts:378-380 (registration)Registration of tool list handler, which returns the TOOLS array including 'up_ping'.server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools: TOOLS }; });
- src/index.ts:119-121 (helper)UpApiClient.ping() helper method that performs the actual API ping request to /util/ping.async ping(): Promise<{ meta: { id: string; statusEmoji: string } }> { return this.makeRequest("/util/ping"); }