Skip to main content
Glama

OpenZeppelin Contracts MCP Server

Official
by OpenZeppelin
error-tooltip.ts576 B
import tippy from 'tippy.js'; const klass = 'has-error'; export function error(node: HTMLElement, initialError?: string) { const t = tippy(node, { placement: 'right', theme: 'light-red border', trigger: 'manual', hideOnClick: false, interactive: true, }); function update(newError?: string) { if (newError) { t.setContent(newError); t.show(); node.classList.add(klass); } else { t.hide(); node.classList.remove(klass); } } update(initialError); return { update, destroy: t.destroy, }; }

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/OpenZeppelin/contracts-wizard'

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