Skip to main content
Glama

disconnect

Disconnect MetaMask wallet from the blockchain interface to ensure secure session termination. Simplifies wallet management within AI-powered blockchain interactions.

Instructions

Disconnect the metamaks wallet

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The execute handler for the 'disconnect' tool, which calls wagmi's disconnect function on the wagmiConfig and returns a success text message.
    execute: async () => { await disconnect(wagmiConfig) return { content: [ { type: "text", text: "Disconnect successfully", }, ], } },
  • Zod schema for the 'disconnect' tool parameters, which takes no input (empty object).
    parameters: z.object({}),
  • The registration function that adds the 'disconnect' tool to the FastMCP server, including name, description, schema, and handler.
    export function registerDisconnectTools(server: FastMCP): void { server.addTool({ name: "disconnect", description: "Disconnect the metamaks wallet", parameters: z.object({}), execute: async () => { await disconnect(wagmiConfig) return { content: [ { type: "text", text: "Disconnect successfully", }, ], } }, }); };
  • Top-level call to register the 'disconnect' tool during server initialization.
    registerDisconnectTools(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