Skip to main content
Glama

get-chains

Retrieve the list of blockchain networks configured in MetaMask for secure wallet operations.

Instructions

Get the configured chains.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler (execute function) for the 'get-chains' tool. It calls getChains from @wagmi/core using the provided wagmiConfig and returns the result as a text content block with JSONStringify serialization.
    execute: async () => {
      const result = getChains(wagmiConfig);
      return {
        content: [
          {
            type: "text",
            text: JSONStringify(result),
          },
        ],
      };
    },
  • Zod schema defining the tool parameters as an empty object (no input parameters required).
    parameters: z.object({}),
  • Registration of the 'get-chains' tool on the FastMCP server within the registerGetChainsTools function, including name, description, schema, and inline handler.
    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),
            },
          ],
        };
      },
    });
  • Call to register the 'get-chains' tool as part of the overall registerTools function that registers all tools.
    registerGetChainsTools(server, wagmiConfig);

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/metamask-mcp'

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