Skip to main content
Glama

Bitcoin SV MCP Server

by b-open-io
index.ts1.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";

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/b-open-io/bsv-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server