Skip to main content
Glama

up_ping

Test the Up Banking API connection and verify authentication is working properly.

Instructions

Test the Up API connection and verify authentication is working

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • MCP tool handler for 'up_ping': invokes UpApiClient.ping() and formats the result as 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 (registration)
    Tool registration in TOOLS array, including name, description, and empty input schema.
    { name: "up_ping", description: "Test the Up API connection and verify authentication is working", inputSchema: { type: "object", properties: {}, }, },
  • UpApiClient.ping() helper method: performs authenticated GET to Up API /util/ping endpoint via makeRequest.
    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