MCP Prompts Server

add_prompt

Add a new prompt

Input Schema

NameRequiredDescriptionDefault
promptYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "prompt": { "additionalProperties": false, "properties": { "category": { "type": "string" }, "content": { "type": "string" }, "description": { "type": "string" }, "isTemplate": { "default": false, "type": "boolean" }, "name": { "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" }, "variables": { "items": { "type": "string" }, "type": "array" } }, "required": [ "name", "content" ], "type": "object" } }, "required": [ "prompt" ], "type": "object" }