Skip to main content
Glama

zora_health

Check server and environment diagnostics for the Zora Coins ecosystem, including API key status, wallet connections, RPC availability, and chain information.

Instructions

Returns server and environment diagnostics (API key present, wallet, RPC, chain).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'zora_health' tool. It returns a JSON object with server name, version, API key status, RPC URL, chain ID, and wallet address.
    async () => { const res = { server: { name: SERVER_NAME, version: SERVER_VERSION }, apiKeyConfigured: !!apiKey, rpcUrl: baseRpcUrl, chainId, walletAddress: account?.address || null, }; return { content: [{ type: "text", text: json(res) }] }; }
  • The schema definition for the 'zora_health' tool, including title, description, and empty input schema (no parameters required).
    { title: "Zora Coins server health", description: "Returns server and environment diagnostics (API key present, wallet, RPC, chain).", inputSchema: {}, },
  • src/index.ts:79-97 (registration)
    The registration of the 'zora_health' tool using McpServer.registerTool, including inline schema and handler function.
    server.registerTool( "zora_health", { title: "Zora Coins server health", description: "Returns server and environment diagnostics (API key present, wallet, RPC, chain).", inputSchema: {}, }, async () => { const res = { server: { name: SERVER_NAME, version: SERVER_VERSION }, apiKeyConfigured: !!apiKey, rpcUrl: baseRpcUrl, chainId, walletAddress: account?.address || null, }; return { content: [{ type: "text", text: json(res) }] }; } );

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/r4topunk/zora-coins-mcp-server'

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