@gluneau/hive-mcp-server
Version:
An MCP server that enables AI assistants to interact with the Hive blockchain
22 lines (21 loc) • 510 B
TypeScript
import { z } from 'zod';
export declare const createPostSchema: z.ZodObject<{
title: z.ZodString;
content: z.ZodString;
tags: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
title: string;
content: string;
tags?: string | undefined;
}, {
title: string;
content: string;
tags?: string | undefined;
}>;
export declare const analyzeAccountSchema: z.ZodObject<{
username: z.ZodString;
}, "strip", z.ZodTypeAny, {
username: string;
}, {
username: string;
}>;