@gluneau/hive-mcp-server
Version:
An MCP server that enables AI assistants to interact with the Hive blockchain
16 lines • 685 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.analyzeAccountSchema = exports.createPostSchema = void 0;
// src/schemas/prompts.ts
const zod_1 = require("zod");
// Schema for create-post prompt
exports.createPostSchema = zod_1.z.object({
title: zod_1.z.string().describe("Title of the post"),
content: zod_1.z.string().describe("Content of the post in markdown"),
tags: zod_1.z.string().optional().describe("Comma-separated list of tags")
});
// Schema for analyze-account prompt
exports.analyzeAccountSchema = zod_1.z.object({
username: zod_1.z.string().describe("Hive username to analyze")
});
//# sourceMappingURL=prompts.js.map