Skip to main content
Glama

get-chains

Retrieve configured blockchain networks for secure AI-powered interactions through MetaMask wallet without exposing private keys.

Instructions

Get the configured chains

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The execute handler for the 'get-chains' tool. It retrieves configured chains using wagmi's getChains function with the wagmiConfig and returns the JSON-stringified result as text content.
    execute: async () => { const result = getChains(wagmiConfig) return { content: [ { type: "text", text: JSONStringify(result), }, ], } },
  • Zod schema defining the input parameters for the 'get-chains' tool (empty object, no parameters).
    parameters: z.object({}),
  • The registerGetChainsTools function that defines and registers the 'get-chains' MCP tool with the FastMCP server, including name, description, schema, and handler.
    export function registerGetChainsTools(server: FastMCP): void { server.addTool({ name: "get-chains", description: "Get the configured chains", parameters: z.object({}), execute: async () => { const result = getChains(wagmiConfig) return { content: [ { type: "text", text: JSONStringify(result), }, ], } }, }); };
  • The call to registerGetChainsTools during server initialization, importing all tool registrations from './tools/index.js'.
    registerGetChainsTools(server);

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/Xiawpohr/mcpilot'

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