Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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), }, ], }; }
  • 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 }; });
  • 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"); }

Latest Blog Posts

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/alex1092/up-bank-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server