systemprompt-mcp-core
Version:
A specialized Model Context Protocol (MCP) server that integrates with systemprompt.io to provide powerful prompt management capabilities. This server enables seamless creation, management, and versioning of system prompts and agents through MCP. It works
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