UNPKG

systemprompt-mcp-interview

Version:

A specialized Model Context Protocol (MCP) server that enables AI-powered interview roleplay scenarios

27 lines 743 B
export const SystempromptAgentRequestSchema = { type: "object", properties: { content: { type: "string", }, metadata: { type: "object", properties: { title: { type: "string", }, description: { type: ["null", "string"], }, log_message: { type: "string", }, }, additionalProperties: false, }, }, additionalProperties: false, required: ["content", "metadata"], $schema: "http://json-schema.org/draft-07/schema#", }; //# sourceMappingURL=SystempromptAgentRequestSchema.js.map