UNPKG

systemprompt-mcp-interview

Version:

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

14 lines (13 loc) 286 B
export type ToolResponse = { content: { type: "text" | "resource"; text: string; resource?: { uri: string; text: string; mimeType: string; }; }[]; _meta?: Record<string, unknown>; isError?: boolean; };