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
import { FastMCP } from "fastmcp";
import { z } from "zod";
import { getChains } from "@wagmi/core"
import { wagmiConfig } from "../wagmi-config.js";
import { JSONStringify } from "../utils/json-stringify.js";
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),
},
],
}
},
});
};