@gluneau/hive-mcp-server
Version:
An MCP server that enables AI assistants to interact with the Hive blockchain
20 lines (19 loc) • 569 B
TypeScript
import { Response } from '../utils/response';
export declare function encryptMessage(params: {
message: string;
recipient: string;
}): Promise<Response>;
export declare function decryptMessage(params: {
encrypted_message: string;
sender: string;
}): Promise<Response>;
export declare function sendEncryptedMessage(params: {
message: string;
recipient: string;
amount: number;
}): Promise<Response>;
export declare function getEncryptedMessages(params: {
username?: string;
limit: number;
decrypt: boolean;
}): Promise<Response>;