UNPKG

bsv-mcp

Version:

A collection of Bitcoin SV (BSV) tools for the Model Context Protocol (MCP) framework

35 lines (31 loc) 1.33 kB
import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { registerAuthPrompt } from "./auth"; import { registerCryptographyPrompt } from "./cryptography"; // Import all prompt registration functions import { registerOverviewPrompt } from "./overview"; import { registerPrimitivesPrompt } from "./primitives"; import { registerScriptPrompt } from "./script"; import { registerTransactionPrompt } from "./transaction"; import { registerWalletPrompt } from "./wallet"; /** * Register all BSV SDK prompts with the MCP server * @param server The MCP server instance */ export function registerAllBsvSdkPrompts(server: McpServer): void { // Register all BSV SDK related prompts registerOverviewPrompt(server); registerWalletPrompt(server); registerTransactionPrompt(server); registerAuthPrompt(server); registerCryptographyPrompt(server); registerScriptPrompt(server); registerPrimitivesPrompt(server); } // Export all prompts export { registerOverviewPrompt } from "./overview"; export { registerWalletPrompt } from "./wallet"; export { registerTransactionPrompt } from "./transaction"; export { registerAuthPrompt } from "./auth"; export { registerCryptographyPrompt } from "./cryptography"; export { registerScriptPrompt } from "./script"; export { registerPrimitivesPrompt } from "./primitives";