kntn-dev-mcp
Version:
MCP server providing comprehensive kintone development support including API specs, field types, and development tips
11 lines (10 loc) • 335 B
TypeScript
export type ErrorResult = {
isError: true;
content: Array<{
type: "text";
text: string;
}>;
};
export declare function handleError(error: Error): ErrorResult;
export declare function handleValidationError(message: string): ErrorResult;
export declare function handleNotFound(resource: string): ErrorResult;