UNPKG

systemprompt-mcp-gmail

Version:

A specialized Model Context Protocol (MCP) server that enables you to search, read, delete and send emails from your Gmail account, leveraging an AI Agent to help with each operation.

46 lines 1.54 kB
export const SystempromptPromptRequestSchema = { type: "object", properties: { metadata: { type: "object", properties: { title: { type: "string", description: "The title of the prompt", }, description: { type: ["string"], description: "A detailed description of what the prompt does", }, log_message: { type: "string", description: "A message to log when this prompt is used", }, tag: { type: "array", items: { type: "string", }, description: "Tags to categorize the prompt", }, }, additionalProperties: false, required: ["title", "description"], }, instruction: { type: "object", properties: { static: { type: "string", description: "The static instruction text that defines the prompt behavior", }, }, additionalProperties: false, required: ["static"], }, }, additionalProperties: false, required: ["instruction", "metadata"], $schema: "http://json-schema.org/draft-07/schema#", }; //# sourceMappingURL=SystempromptPromptRequestSchema.js.map