UNPKG

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

10 lines (9 loc) 343 B
import type { JSONSchema7 } from "json-schema"; /** * Validates data against a schema and throws an error with details if validation fails */ export declare function validateWithErrors(data: unknown, schema: JSONSchema7): void; /** * Validates a request against a schema */ export declare function validateRequest(request: unknown): void;