@gluneau/hive-mcp-server
Version:
An MCP server that enables AI assistants to interact with the Hive blockchain
16 lines (15 loc) • 831 B
TypeScript
import { z } from 'zod';
export declare const tagsSchema: z.ZodDefault<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodEffects<z.ZodString, any[], string>]>>;
export declare const operationFilterSchema: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodEffects<z.ZodString, any[], string>]>>;
export declare const beneficiariesSchema: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
account: z.ZodString;
weight: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
account: string;
weight: number;
}, {
account: string;
weight: number;
}>, "many">, z.ZodNull]>>>;
export declare const tagQueryCategories: z.ZodEnum<["active", "cashout", "children", "comments", "created", "hot", "promoted", "trending", "votes"]>;
export declare const userQueryCategories: z.ZodEnum<["blog", "feed"]>;