Skip to main content
Glama
netlify

Netlify MCP Server

Official
by netlify
get-full-extension-details.ts750 B
import { z } from 'zod'; import type { DomainTool } from '../types.js'; import { getExtension } from './extension-utils.js'; const getFullExtensionDetailsParamsSchema = z.object({ extensionSlug: z.string(), teamId: z.string().describe('Team id of the current project team. If unsure, ask what Netlify team'), }); export const getFullExtensionDetailsDomainTool: DomainTool<typeof getFullExtensionDetailsParamsSchema> = { domain: 'extension', operation: 'get-full-extension-details', inputSchema: getFullExtensionDetailsParamsSchema, toolAnnotations: { readOnlyHint: true, }, cb: async ({ extensionSlug, teamId }, {request}) => { return JSON.stringify(await getExtension({ extensionSlug, accountId: teamId, request })); } }

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/netlify/netlify-mcp'

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