@gluneau/hive-mcp-server
Version:
An MCP server that enables AI assistants to interact with the Hive blockchain
30 lines (29 loc) • 784 B
TypeScript
import { Response } from '../utils/response';
export declare function createPost(params: {
title: string;
body: string;
tags: string[];
beneficiaries?: {
account: string;
weight: number;
}[] | null;
permalink?: string;
max_accepted_payout?: string;
percent_hbd?: number;
allow_votes: boolean;
allow_curation_rewards: boolean;
}): Promise<Response>;
export declare function createComment(params: {
parent_author: string;
parent_permlink: string;
body: string;
permalink?: string;
beneficiaries?: {
account: string;
weight: number;
}[] | null;
max_accepted_payout?: string;
percent_hbd?: number;
allow_votes: boolean;
allow_curation_rewards: boolean;
}): Promise<Response>;