@mseep/doit-mcp-server
Version:
DoiT official MCP Server
21 lines (20 loc) • 522 B
TypeScript
import { z } from "zod";
export declare const ValidateUserArgumentsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
export interface ValidateUserResponse {
domain: string;
email: string;
}
export declare const validateUserTool: {
name: string;
description: string;
inputSchema: {
type: string;
properties: {};
};
};
export declare function handleValidateUserRequest(args: any, token: string): Promise<{
content: {
type: string;
text: string;
}[];
}>;