MCP Prompts Server

apply_template

Apply variables to a prompt template

Input Schema

NameRequiredDescriptionDefault
idYes
variablesYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "id": { "type": "string" }, "variables": { "additionalProperties": { "type": [ "string", "number", "boolean" ] }, "type": "object" } }, "required": [ "id", "variables" ], "type": "object" }