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.

31 lines 914 B
export const SystempromptBlockRequestSchema = { type: "object", properties: { content: { type: "string", }, prefix: { type: "string", description: "The prefix to use for the block. Must have no spaces or special characters.", }, metadata: { type: "object", properties: { title: { type: "string", }, description: { type: ["null", "string"], }, log_message: { type: "string", }, }, additionalProperties: false, }, }, additionalProperties: false, required: ["content", "metadata", "prefix"], $schema: "http://json-schema.org/draft-07/schema#", }; //# sourceMappingURL=SystempromptBlockRequestSchema.js.map