mcp-use
Version:
Opinionated MCP Framework for TypeScript (@modelcontextprotocol/sdk compatible) - Build MCP Agents, Clients and Servers with support for ChatGPT Apps, Code Mode, OAuth, Notifications, Sampling, Observability and more.
24 lines • 633 B
TypeScript
/**
* Represents any valid JSON value.
*/
export type JSONValue = string | number | boolean | null | JSONObject | JSONValue[];
/**
* Represents a JSON object.
*/
export type JSONObject = {
[key: string]: JSONValue;
};
export type JSONSchema = {
type?: string | string[];
properties?: Record<string, JSONSchema>;
items?: JSONSchema | JSONSchema[];
required?: string[];
enum?: (string | number)[];
format?: string;
oneOf?: JSONSchema[];
allOf?: JSONSchema[];
anyOf?: JSONSchema[];
additionalProperties?: boolean | JSONSchema;
[key: string]: any;
};
//# sourceMappingURL=Type.d.ts.map