MCP Prompts Server

list_prompts

List all prompts

Input Schema

NameRequiredDescriptionDefault
categoryNo
isTemplateNo
limitNo
offsetNo
orderNo
searchNo
sortNo
tagsNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "category": { "type": "string" }, "isTemplate": { "type": "boolean" }, "limit": { "exclusiveMinimum": 0, "type": "integer" }, "offset": { "minimum": 0, "type": "integer" }, "order": { "enum": [ "asc", "desc" ], "type": "string" }, "search": { "type": "string" }, "sort": { "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }