bsv-mcp

b-open-io/bsv-mcp

3.4

If you are the rightful owner of bsv-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

A collection of Bitcoin SV (BSV) tools for the Model Context Protocol (MCP) framework, providing wallet, ordinals, and utility functions for BSV blockchain interaction.

Tools

Functions exposed to the LLM to take actions

bsv_getPrice

Retrieves the current price of Bitcoin SV (BSV) in USD from a reliable exchange API. This tool provides real-time market data that can be used for calculating transaction values, monitoring market conditions, or converting between BSV and fiat currencies.

bsv_decodeTransaction

Decodes and analyzes Bitcoin SV transactions to provide detailed insights. This powerful tool accepts either a transaction ID or raw transaction data and returns comprehensive information including inputs, outputs, fee calculations, script details, and blockchain context. Supports both hex and base64 encoded transactions and automatically fetches additional on-chain data when available.

bsv_explore

Explore Bitcoin SV blockchain data using the WhatsOnChain API. Access multiple data types:

CHAIN DATA:

  • chain_info: Network stats, difficulty, and chain work
  • chain_tips: Current chain tips including heights and states
  • circulating_supply: Current BSV circulating supply
  • peer_info: Connected peer statistics

BLOCK DATA:

  • block_by_hash: Complete block data via hash (requires blockHash parameter)
  • block_by_height: Complete block data via height (requires blockHeight parameter)
  • tag_count_by_height: Stats on tag count for a specific block via height (requires blockHeight parameter)
  • block_headers: Retrieves the last 10 block headers
  • block_pages: Retrieves pages of transaction IDs for large blocks (requires blockHash and optional pageNumber)

STATS DATA:

  • block_stats_by_height: Block statistics for a specific height (requires blockHeight parameter)
  • block_miner_stats: Block mining statistics for a time period (optional days parameter, default 7)
  • miner_summary_stats: Summary of mining statistics (optional days parameter, default 7)

TRANSACTION DATA:

  • tx_by_hash: Detailed transaction data (requires txHash parameter)
  • tx_raw: Raw transaction hex data (requires txHash parameter)
  • tx_receipt: Transaction receipt (requires txHash parameter)
  • bulk_tx_details: Bulk transaction details (requires txids parameter as array of transaction hashes)

ADDRESS DATA:

  • address_history: Transaction history for address (requires address parameter, optional limit)
  • address_utxos: Unspent outputs for address (requires address parameter)

NETWORK:

  • health: API health check

Use the appropriate parameters for each endpoint type and specify 'main' or 'test' network.

ordinals_getInscription

Retrieves detailed information about a specific ordinal inscription by its outpoint. Returns complete inscription data including content type, file information, inscription origin, and current status. Useful for verifying NFT authenticity or retrieving metadata about digital artifacts.

ordinals_searchInscriptions

Searches for Bitcoin SV ordinal inscriptions using flexible criteria. This powerful search tool supports filtering by address, inscription content, MIME type, MAP fields, and other parameters. Results include detailed information about each matched inscription. Ideal for discovering NFTs and exploring the ordinals ecosystem.

ordinals_marketListings

Retrieves current marketplace listings for Bitcoin SV ordinals with flexible filtering. Supports multiple asset types (NFTs, BSV-20 tokens, BSV-21 tokens) through a unified interface. Results include listing prices, details about the assets, and seller information.

ordinals_marketSales

Retrieves recent sales data for BSV-20 and BSV-21 tokens on the ordinals marketplace. This tool provides insights into market activity, including sale prices, transaction details, and token information. Supports filtering by token ID, ticker symbol, or seller address to help analyze market trends and track specific token sales.

ordinals_getTokenByIdOrTicker

Retrieves detailed information about a specific BSV-20 token by its ID or ticker symbol. Returns complete token data including ticker symbol, supply information, decimals, and current status. This tool is useful for verifying token authenticity or checking supply metrics.

utils_convertData

Converts data between different encodings (utf8, hex, base64, binary). Useful for transforming data formats when working with blockchain data, encryption, or file processing.

Parameters:

  • data (required): The string to convert
  • from (required): Source encoding format (utf8, hex, base64, or binary)
  • to (required): Target encoding format (utf8, hex, base64, or binary)

Example usage:

  • UTF-8 to hex: {"data": "hello world", "from": "utf8", "to": "hex"} → 68656c6c6f20776f726c64
  • UTF-8 to base64: {"data": "Hello World", "from": "utf8", "to": "base64"} → SGVsbG8gV29ybGQ=
  • base64 to UTF-8: {"data": "SGVsbG8gV29ybGQ=", "from": "base64", "to": "utf8"} → Hello World
  • hex to base64: {"data": "68656c6c6f20776f726c64", "from": "hex", "to": "base64"} → aGVsbG8gd29ybGQ=

Notes:

  • All parameters are required
  • The tool returns the converted data as a string
  • For binary conversion, data is represented as an array of byte values

Prompts

Interactive templates invoked by user choice

bitcoin_sv_ordinals

Comprehensive information about Bitcoin SV ordinals, including what they are, how they work, and how to use them.

bitcoin_sv_sdk_overview

General overview of the Bitcoin SV SDK, including its purpose and main components.

bitcoin_sv_sdk_wallet

Detailed information about the wallet functionality in the BSV SDK, including key management, address handling, and UTXO management.

bitcoin_sv_sdk_transaction

Detailed information about transaction building and management in the BSV SDK, including input/output handling, script integration, and transaction signing.

bitcoin_sv_sdk_auth

Detailed information about the authentication functionality in the BSV SDK, including identity protocols, certificates, and session management.

bitcoin_sv_sdk_cryptography

Detailed information about the cryptographic functionality in the BSV SDK, including key generation, signing, encryption, and hashing.

bitcoin_sv_sdk_script

Detailed information about the script functionality in the BSV SDK, including Bitcoin Script operations, locking and unlocking scripts, and OP_CODES.

bitcoin_sv_sdk_primitives

Detailed information about the primitive data types and structures in the BSV SDK, including Binary, Hex, Points, and other fundamental types.

Resources

Contextual data attached and managed by the client

brcs_readme

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/README.md

MIME: null

Overview of all Bitcoin SV protocol specifications in the BRCs repository

brcs_summary

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/SUMMARY.md

MIME: null

Table of contents for all Bitcoin SV BRCs

brc_0000_bananapowered

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0000.md

MIME: null

Bitcoin SV BRC-0: Banana-Powered Bitcoin Wallet Control Protocol

brc_0001_transaction

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0001.md

MIME: null

Bitcoin SV BRC-1: Transaction Creation

brc_0002_data

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0002.md

MIME: null

Bitcoin SV BRC-2: Data Encryption and Decryption

brc_0003_digital

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0003.md

MIME: null

Bitcoin SV BRC-3: Digital Signature Creation and Verification

brc_0004_input

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0004.md

MIME: null

Bitcoin SV BRC-4: Input Redemption

brc_0005_http

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0005.md

MIME: null

Bitcoin SV BRC-5: HTTP Wallet Communications Substrate

brc_0006_wallet

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0006.md

MIME: null

Bitcoin SV BRC-6: XDM Wallet Communications Substrate

brc_0007_window

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0007.md

MIME: null

Bitcoin SV BRC-7: Window Wallet Communication Substrate

brc_0008_everettstyle

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0008.md

MIME: null

Bitcoin SV BRC-8: Everett-style Transaction Envelopes

brc_0009_simplified

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0009.md

MIME: null

Bitcoin SV BRC-9: Simplified Payment Verification

brc_0010_merkle

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0010.md

MIME: null

Bitcoin SV BRC-10: Merkle proof standardised format

brc_0011_proof

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0011.md

MIME: null

Bitcoin SV BRC-11: TSC Proof Format with Heights

brc_0012_transaction

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0012.md

MIME: null

Bitcoin SV BRC-12: Raw Transaction Format

brc_0013_transaction

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0013.md

MIME: null

Bitcoin SV BRC-13: TXO Transaction Object Format

brc_0014_script

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/scripts/0014.md

MIME: null

Bitcoin SV BRC-14: Bitcoin Script Binary, Hex and ASM Formats

brc_0015_script

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/scripts/0015.md

MIME: null

Bitcoin SV BRC-15: Bitcoin Script Assembly Language

brc_0016_public

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/scripts/0016.md

MIME: null

Bitcoin SV BRC-16: Pay to Public Key Hash

brc_0017_puzzle

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/scripts/0017.md

MIME: null

Bitcoin SV BRC-17: Pay to R Puzzle Hash

brc_0018_false

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/scripts/0018.md

MIME: null

Bitcoin SV BRC-18: Pay to False Return

brc_0019_true

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/scripts/0019.md

MIME: null

Bitcoin SV BRC-19: Pay to True Return

brc_0020_there

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/tokens/0020.md

MIME: null

Bitcoin SV BRC-20: There is no BRC-20

brc_0021_push

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/scripts/0021.md

MIME: null

Bitcoin SV BRC-21: Push TX

brc_0022_overlay

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0022.md

MIME: null

Bitcoin SV BRC-22: Overlay Network Data Synchronization

brc_0023_confederacy

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0023.md

MIME: null

Bitcoin SV BRC-23: Confederacy Host Interconnect Protocol (CHIP)

brc_0024_overlay

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0024.md

MIME: null

Bitcoin SV BRC-24: Overlay Network Lookup Services

brc_0025_confederacy

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0025.md

MIME: null

Bitcoin SV BRC-25: Confederacy Lookup Availability Protocol (CLAP)

brc_0026_universal

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0026.md

MIME: null

Bitcoin SV BRC-26: Universal Hash Resolution Protocol

brc_0027_direct

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/payments/0027.md

MIME: null

Bitcoin SV BRC-27: Direct Payment Protocol (DPP)

brc_0028_paymail

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/payments/0028.md

MIME: null

Bitcoin SV BRC-28: Paymail Payment Destinations

brc_0029_simple

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/payments/0029.md

MIME: null

Bitcoin SV BRC-29: Simple Authenticated BSV P2PKH Payment Protocol

brc_0030_transaction

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0030.md

MIME: null

Bitcoin SV BRC-30: Transaction Extended Format (EF)

brc_0031_authrite

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0031.md

MIME: null

Bitcoin SV BRC-31: Authrite Mutual Authentication

brc_0032_bip32

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0032.md

MIME: null

Bitcoin SV BRC-32: BIP32 Key Derivation Scheme

brc_0033_peerserv

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0033.md

MIME: null

Bitcoin SV BRC-33: PeerServ Message Relay Interface

brc_0034_peerserv

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0034.md

MIME: null

Bitcoin SV BRC-34: PeerServ Host Interconnect Protocol

brc_0036_format

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/outpoints/0036.md

MIME: null

Bitcoin SV BRC-36: Format for Bitcoin Outpoints

brc_0037_spending

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/outpoints/0037.md

MIME: null

Bitcoin SV BRC-37: Spending Instructions Extension for UTXO Storage Format

brc_0041_packetpay

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/payments/0041.md

MIME: null

Bitcoin SV BRC-41: PacketPay HTTP Payment Mechanism

brc_0042_derivation

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0042.md

MIME: null

Bitcoin SV BRC-42: BSV Key Derivation Scheme (BKDS)

brc_0043_security

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0043.md

MIME: null

Bitcoin SV BRC-43: Security Levels, Protocol IDs, Key IDs and Counterparties

brc_0044_adminreserved

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0044.md

MIME: null

Bitcoin SV BRC-44: Admin-reserved and Prohibited Key Derivation Protocols

brc_0045_definition

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/tokens/0045.md

MIME: null

Bitcoin SV BRC-45: Definition of UTXOs as Bitcoin Tokens

brc_0046_wallet

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0046.md

MIME: null

Bitcoin SV BRC-46: Wallet Transaction Output Tracking (Output Baskets)

brc_0047_bare

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/scripts/0047.md

MIME: null

Bitcoin SV BRC-47: Bare Multi-Signature

brc_0048_push

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/scripts/0048.md

MIME: null

Bitcoin SV BRC-48: Pay to Push Drop

brc_0049_users

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/opinions/0049.md

MIME: null

Bitcoin SV BRC-49: Users should never see an address

brc_0050_submitting

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0050.md

MIME: null

Bitcoin SV BRC-50: Submitting Received Payments to a Wallet

brc_0051_list

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/opinions/0051.md

MIME: null

Bitcoin SV BRC-51: List of user experiences

brc_0052_identity

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0052.md

MIME: null

Bitcoin SV BRC-52: Identity Certificates

brc_0053_certificate

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0053.md

MIME: null

Bitcoin SV BRC-53: Certificate Creation and Revelation

brc_0054_hybrid

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/payments/0054.md

MIME: null

Bitcoin SV BRC-54: Hybrid Payment Mode for DPP

brc_0055_https

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/payments/0055.md

MIME: null

Bitcoin SV BRC-55: HTTPS Transport Mechanism for DPP

brc_0056_unified

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0056.md

MIME: null

Bitcoin SV BRC-56: Unified Abstract Wallet-to-Application Messaging Layer

brc_0057_legitimate

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/opinions/0057.md

MIME: null

Bitcoin SV BRC-57: Legitimate Uses for mAPI

brc_0058_merkle

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0058.md

MIME: null

Bitcoin SV BRC-58: Merkle Path JSON format

brc_0059_security

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/opinions/0059.md

MIME: null

Bitcoin SV BRC-59: Security and Scalability Benefits of UTXO-based Overlay Networks

brc_0060_simplifying

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/state-machines/0060.md

MIME: null

Bitcoin SV BRC-60: Simplifying State Machine Event Chains in Bitcoin

brc_0061_compound

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0061.md

MIME: null

Bitcoin SV BRC-61: Compound Merkle Path Format

brc_0062_background

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0062.md

MIME: null

Bitcoin SV BRC-62: Background Evaluation Extended Format (BEEF) Transactions

brc_0063_genealogical

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0063.md

MIME: null

Bitcoin SV BRC-63: Genealogical Identity Protocol

brc_0064_overlay

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0064.md

MIME: null

Bitcoin SV BRC-64: Overlay Network Transaction History Tracking

brc_0065_transaction

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0065.md

MIME: null

Bitcoin SV BRC-65: Transaction Labels and List Actions

brc_0066_output

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0066.md

MIME: null

Bitcoin SV BRC-66: Output Basket Removal and Certificate Deletion

brc_0067_simplified

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0067.md

MIME: null

Bitcoin SV BRC-67: Simplified Payment Verification

brc_0068_publishing

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0068.md

MIME: null

Bitcoin SV BRC-68: Publishing Trust Anchor Details at an Internet Domain

brc_0069_revealing

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0069.md

MIME: null

Bitcoin SV BRC-69: Revealing Key Linkages

brc_0070_paymail

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/payments/0070.md

MIME: null

Bitcoin SV BRC-70: Paymail BEEF Transaction

brc_0071_merkle

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0071.md

MIME: null

Bitcoin SV BRC-71: Merkle Path Binary Format

brc_0072_protecting

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0072.md

MIME: null

Bitcoin SV BRC-72: Protecting BRC-69 Key Linkage Information in Transit

brc_0073_group

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0073.md

MIME: null

Bitcoin SV BRC-73: Group Permissions for App Access

brc_0074_unified

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0074.md

MIME: null

Bitcoin SV BRC-74: BSV Unified Merkle Path (BUMP) Format

brc_0075_mnemonic

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0075.md

MIME: null

Bitcoin SV BRC-75: Mnemonic For Master Private Key

brc_0076_graph

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0076.md

MIME: null

Bitcoin SV BRC-76: Graph Aware Sync Protocol

brc_0077_message

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0077.md

MIME: null

Bitcoin SV BRC-77: Message Signature Creation and Verification

brc_0078_serialization

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0078.md

MIME: null

Bitcoin SV BRC-78: Serialization Format for Portable Encrypted Messages

brc_0079_token

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/tokens/0079.md

MIME: null

Bitcoin SV BRC-79: Token Exchange Protocol for UTXO-based Overlay Networks

brc_0080_improving

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/opinions/0080.md

MIME: null

Bitcoin SV BRC-80: Improving on MLD for BSV Multicast Services

brc_0081_private

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0081.md

MIME: null

Bitcoin SV BRC-81: Private Overlays with P2PKH Transactions

brc_0082_defining

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0082.md

MIME: null

Bitcoin SV BRC-82: Defining a Scalable IPv6 Multicast Protocol for Blockchain Transaction Broadcast

brc_0083_scalable

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0083.md

MIME: null

Bitcoin SV BRC-83: Scalable Transaction Processing in the BSV Network

brc_0084_linked

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0084.md

MIME: null

Bitcoin SV BRC-84: Linked Key Derivation Scheme

brc_0085_proven

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0085.md

MIME: null

Bitcoin SV BRC-85: Proven Identity Key Exchange (PIKE)

brc_0086_bidirectionally

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0086.md

MIME: null

Bitcoin SV BRC-86: Bidirectionally Authenticated Derivation of Privacy Restricted Type 42 Keys

brc_0087_standardized

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0087.md

MIME: null

Bitcoin SV BRC-87: Standardized Naming Conventions for BRC-22 Topic Managers and BRC-24 Lookup Services

brc_0088_overlay

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0088.md

MIME: null

Bitcoin SV BRC-88: Overlay Services Synchronization Architecture

brc_0089_standard

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/opinions/0089.md

MIME: null

Bitcoin SV BRC-89: Web 3.0 Standard (at a high level)

brc_0090_thoughts

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/opinions/0090.md

MIME: null

Bitcoin SV BRC-90: Thoughts on the Mandala Network

brc_0091_outputs

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/opinions/0091.md

MIME: null

Bitcoin SV BRC-91: Outputs, Overlays, and Scripts in the Mandala Network

brc_0092_mandala

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/tokens/0092.md

MIME: null

Bitcoin SV BRC-92: Mandala Token Protocol

brc_0093_limitations

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0093.md

MIME: null

Bitcoin SV BRC-93: Limitations of BRC-69 Key Linkage Revelation

brc_0094_verifiable

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/key-derivation/0094.md

MIME: null

Bitcoin SV BRC-94: Verifiable Revelation of Shared Secrets Using Schnorr Protocol

brc_0095_atomic

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0095.md

MIME: null

Bitcoin SV BRC-95: Atomic BEEF Transactions

brc_0096_beef

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/transactions/0096.md

MIME: null

Bitcoin SV BRC-96: BEEF V2 Txid Only Extension

brc_0097_extensible

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0097.md

MIME: null

Bitcoin SV BRC-97: Extensible Proof-Type Format for Specific Key Linkage Claims

brc_0098_protocols

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0098.md

MIME: null

Bitcoin SV BRC-98: P Protocols: Allowing future wallet protocol permission schemes

brc_0099_baskets

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0099.md

MIME: null

Bitcoin SV BRC-99: P Baskets: Allowing Future Wallet Basket and Digital Asset Permission Schemes

brc_0100_unified

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/wallet/0100.md

MIME: null

Bitcoin SV BRC-100: Unified, Vendor-Neutral, Unchanging, and Open BSV Blockchain Standard Wallet-to-Application Interface

brc_0101_diverse

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/overlays/0101.md

MIME: null

Bitcoin SV BRC-101: Diverse Facilitators and URL Protocols for SHIP and SLAP Overlay Advertisements

brc_0102_deploymentinfojson

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/apps/0102.md

MIME: null

Bitcoin SV BRC-102: The deployment-info.json Specification

brc_0103_peertopeer

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0103.md

MIME: null

Bitcoin SV BRC-103: Peer-to-Peer Mutual Authentication and Certificate Exchange Protocol

brc_0104_http

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/peer-to-peer/0104.md

MIME: null

Bitcoin SV BRC-104: HTTP Transport for BRC-103 Mutual Authentication

brc_0105_http

URI: https://raw.githubusercontent.com/bitcoin-sv/BRCs/master/payments/0105.md

MIME: null

Bitcoin SV BRC-105: HTTP Service Monetization Framework

bsv-mcp-changelog

URI: https://github.com/b-open-io/bsv-mcp/blob/main/CHANGELOG.md

MIME: null

Version history and changelog for the BSV MCP server

junglebus-api-docs

URI: https://junglebus.gorillapool.io/docs/

MIME: null

API documentation for JungleBus, a transaction monitoring service for Bitcoin SV

Related MCP Servers

View all finance servers →