UNPKG

systemprompt-mcp-interview

Version:

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

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;