systemprompt-mcp-interview
Version:
A specialized Model Context Protocol (MCP) server that enables AI-powered interview roleplay scenarios
31 lines • 914 B
JavaScript
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