Skip to main content
Glama

get-chains

Retrieve configured blockchain chains on MCPilot, enabling secure AI-driven interactions with MetaMask for simplified user onboarding.

Instructions

Get the configured chains

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The execute handler for the "get-chains" tool. It calls getChains from @wagmi/core using the wagmiConfig and returns the result as a text content block with JSONStringify.
    execute: async () => { const result = getChains(wagmiConfig) return { content: [ { type: "text", text: JSONStringify(result), }, ], } },
  • Zod schema for the tool parameters: an empty object since the tool takes no input.
    parameters: z.object({}),
  • Registers the "get-chains" tool on the FastMCP server within the registerGetChainsTools function.
    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), }, ], } }, });
  • Invokes the registerGetChainsTools function to add the tool to the main MCP server instance.
    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