@jeanmemory/react
Version:
React SDK for Jean Memory - Build personalized AI chatbots in 5 lines of code
18 lines (17 loc) • 420 B
TypeScript
export interface MCPResponse {
jsonrpc: string;
id: number;
result?: {
content: Array<{
type: string;
text: string;
}>;
};
error?: {
code: number;
message: string;
};
}
export declare function makeMCPRequest(user: {
access_token: string;
}, apiKey: string, toolName: string, arguments_: any, clientName?: string): Promise<MCPResponse>;