Netlify MCP Server

deploy-function

Deploy a serverless function

Input Schema

NameRequiredDescriptionDefault
nameYesFunction name
pathYesPath to the function file
runtimeNoFunction runtime (e.g., nodejs, go)

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "Function name", "type": "string" }, "path": { "description": "Path to the function file", "type": "string" }, "runtime": { "description": "Function runtime (e.g., nodejs, go)", "type": "string" } }, "required": [ "path", "name" ], "type": "object" }