Skip to main content
Glama

get-connect-uri

Generate a connection URI to link with a MetaMask wallet, enabling secure blockchain interactions without exposing private keys.

Instructions

Get the connect URI to connect to a MetaMask wallet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Registration of the 'get-connect-uri' MCP tool using FastMCP server's addTool method. Includes tool name, description, input schema (empty object), and execute handler function.
    server.addTool({ name: "get-connect-uri", description: "Get the connect URI to connect to a MetaMask wallet.", parameters: z.object({}), execute: async (_, { log }) => { const uri = await getMetaMaskConnectURI(log, wagmiConfig); return { content: [ { type: "text", text: JSONStringify({ uri, }), }, ], }; }, });
  • Handler (execute callback) for the 'get-connect-uri' tool. Fetches the URI using the helper function and returns it as structured text content.
    execute: async (_, { log }) => { const uri = await getMetaMaskConnectURI(log, wagmiConfig); return { content: [ { type: "text", text: JSONStringify({ uri, }), }, ], }; },
  • Zod schema for tool parameters: empty object (no inputs).
    parameters: z.object({}),
  • Helper function implementing the core logic to obtain MetaMask connect URI via headless connector setup, event listening for 'display_uri', and wagmi connect invocation.
    async function getMetaMaskConnectURI(log: any, wagmiConfig: Config) { return new Promise((resolve, reject) => { const connectorFn = metaMask({ headless: true, }); const connector = wagmiConfig._internal.connectors.setup(connectorFn); connector.emitter.on("message", (payload) => { if (payload.type === "display_uri") { const uri = payload.data; resolve(uri); } }); connector.emitter.on("connect", (payload) => { log.debug("connect success!", payload.accounts); }); connector.emitter.on("error", (payload) => { log.error(payload.error); }); connect(wagmiConfig, { connector }) .catch((error) => { log.error("connect error: ", error); log.error(error.stack); reject(error); }); }); }

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