Skip to main content
Glama

sites_get

Retrieve detailed information about a specific Webflow site using its unique site ID to manage or integrate site data effectively.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_idYes

Implementation Reference

  • Handler function that executes the sites_get tool logic by calling Webflow API to get site details.
    async ({ site_id }) => { try { const response = await getClient().sites.get(site_id, requestOptions); return formatResponse(response); } catch (error) { return formatErrorResponse(error); } }
  • Zod input schema for the sites_get tool, defining the required site_id parameter.
    { site_id: z.string().describe("Unique identifier for the site."), },
  • Direct registration of the sites_get tool using McpServer.tool() method.
    server.tool( "sites_get", "Get detailed information about a specific site including its settings, domains, and publishing status.", { site_id: z.string().describe("Unique identifier for the site."), }, async ({ site_id }) => { try { const response = await getClient().sites.get(site_id, requestOptions); return formatResponse(response); } catch (error) { return formatErrorResponse(error); } } );
  • src/mcp.ts:53-53 (registration)
    High-level registration call that invokes the site tools registration, including sites_get.
    registerSiteTools(server, getClient);

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/webflow/mcp-server'

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