@gluneau/hive-mcp-server
Version:
An MCP server that enables AI assistants to interact with the Hive blockchain
26 lines (25 loc) • 621 B
TypeScript
import { RequestHandlerExtra } from '@modelcontextprotocol/sdk/shared/protocol';
export declare function createPostPrompt(params: {
title: string;
content: string;
tags?: string;
}, _extra: RequestHandlerExtra): Promise<{
messages: {
role: "user";
content: {
type: "text";
text: string;
};
}[];
}>;
export declare function analyzeAccountPrompt(params: {
username?: string;
}, _extra: RequestHandlerExtra): Promise<{
messages: {
role: "user";
content: {
type: "text";
text: string;
};
}[];
}>;