Satstream MCP Server

Official

Integrations

  • Provides comprehensive access to Bitcoin blockchain data, including address information, balances, transaction history, block details, mempool statistics, and support for Bitcoin-specific features like Ordinals inscriptions and Runes tokens.

  • The server is built using Bun as its JavaScript runtime environment, allowing for fast execution of the MCP server that interfaces with the Bitcoin data API.

Satstream MCP 서버

Satstream Bitcoin 데이터 API에 대한 액세스를 제공하는 MCP(Model Context Protocol) 서버입니다.

설정

종속성을 설치하려면:

지엑스피1

API 키로 실행하려면:

export SATSTREAM_API_KEY="your-api-key-here" bun run index.ts

또는 API 키를 명령줄 인수로 전달합니다.

bun run index.ts your-api-key-here

Satstream 소개

Satstream은 거래, 주소, 블록, Ordinals 비문, Runes 토큰과 같은 특수 데이터를 포함한 실시간 블록체인 데이터에 대한 액세스를 제공하는 포괄적인 비트코인 블록체인 API 서비스입니다.

API 키 받기

이 MCP 서버를 사용하려면 Satstream API 키가 필요합니다. 다음 방법으로 키를 얻을 수 있습니다.

  1. Satstream 문서 방문
  2. 계정 등록
  3. 대시보드에서 API 키 생성

무료 요금제는 요금 제한이 있는 기본 기능에 대한 액세스를 제공하는 반면, 유료 요금제는 더 높은 요금 제한과 추가 기능을 제공합니다.

사용 가능한 MCP 기능

다음 MCP 기능은 비트코인 데이터 쿼리에 사용할 수 있습니다.

주소 함수

함수 이름설명매개변수
address_get비트코인 주소에 대한 자세한 정보를 얻으세요address : 비트코인 주소
address_balance_get비트코인 주소의 잔액을 받으세요address : 비트코인 주소
address_deltas_get주소에 대한 거래 내역 가져오기address : 비트코인 주소, 그리고 선택적인 페이지 매김 매개변수
address_validate비트코인 주소 검증address : 비트코인 주소
address_outputs_get비트코인 주소에 대한 UTXO 가져오기address : 비트코인 주소, type : 선택적 UTXO 유형 필터
address_rune_deltas_get주소에 대한 룬 토큰 기록 가져오기address : 비트코인 주소, 그리고 선택적인 페이지 매김 매개변수

블록체인 기능

함수 이름설명매개변수
block_get해시 또는 높이로 블록에 대한 정보를 가져옵니다.identifier : 블록 해시 또는 높이
blockchain_info현재 블록체인 통계 및 네트워크 정보를 얻으세요random_string : 선택적 더미 매개변수
transaction_get거래에 대한 세부 정보를 얻으세요txid : 거래 ID

Mempool 함수

함수 이름설명매개변수
mempool_info_getmempool 통계 가져오기random_string : 선택적 더미 매개변수
mempool_transactions_get확인되지 않은 거래 목록선택적 페이지 매김 매개변수

순서형 및 룬 함수

함수 이름설명매개변수
ordinals_inscription_get순서형 비문에 대한 데이터 가져오기inscription_id : 비문 ID
rune_get특정 룬에 대한 정보를 얻으세요identifier : 룬 이름 또는 ID
runes_latest_get최신 룬 받기(처음 100개)random_string : 선택적 더미 매개변수
runes_page_get특정 룬 페이지를 얻으세요page : 페이지 번호

사용 예

주소 정보 얻기

address_get({ address: "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa" })

비트코인 주소 검증

address_validate({ address: "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa" })

블록 정보 가져오기

block_get({ identifier: "000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f" })

블록체인 통계 가져오기

blockchain_info({ random_string: "dummy" })

주소 잔액 가져오기

address_balance_get({ address: "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa" })

유형별로 필터링된 주소의 UTXO 가져오기

address_outputs_get({ address: "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa", type: "cardinal" })

특정 룬에 대한 정보를 얻으세요

rune_get({ identifier: "UNCOMMON•GOODS" })

최신 룬을 받으세요

runes_latest_get({ random_string: "dummy" })

MCP 통합

이 서버는 커서 또는 모델 컨텍스트 프로토콜을 지원하는 다른 환경과 함께 사용하도록 설계되었습니다. 자세한 기능 설명 및 사용 지침은 function-descriptions.json 파일을 참조하세요.

이 프로젝트는 빠른 올인원 JavaScript 런타임인 Bun을 사용하여 만들어졌습니다.

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Satstream API를 통해 주소 정보, 거래 세부 정보, 메모리 풀 통계, 순서/룬 데이터 등 비트코인 블록체인 데이터를 쿼리할 수 있는 모델 컨텍스트 프로토콜 서버입니다.

  1. 설정
    1. Satstream 소개
      1. API 키 받기
    2. 사용 가능한 MCP 기능
      1. 주소 함수
      2. 블록체인 기능
      3. Mempool 함수
      4. 순서형 및 룬 함수
    3. 사용 예
      1. 주소 정보 얻기
      2. 비트코인 주소 검증
      3. 블록 정보 가져오기
      4. 블록체인 통계 가져오기
      5. 주소 잔액 가져오기
      6. 유형별로 필터링된 주소의 UTXO 가져오기
      7. 특정 룬에 대한 정보를 얻으세요
      8. 최신 룬을 받으세요
    4. MCP 통합

      Related MCP Servers

      • A
        security
        A
        license
        A
        quality
        A Model Context Protocol server that provides read-only access to Bybit's cryptocurrency exchange API, allowing users to query real-time cryptocurrency data using natural language.
        Last updated 5 months ago
        9
        5
        TypeScript
        MIT License
      • -
        security
        F
        license
        -
        quality
        A Model Context Protocol server providing tools for querying Bitcoin blockchain data via Blockchain Data and Query APIs, supporting various BTC information retrieval functions.
        Last updated 2 months ago
        Python
        • Linux
        • Apple
      • -
        security
        F
        license
        -
        quality
        A Model Context Protocol server that enables AI assistants to access Flow blockchain data and perform operations such as checking balances, resolving domains, executing scripts, and submitting transactions.
        Last updated 2 months ago
        JavaScript
        • Linux
        • Apple
      • -
        security
        A
        license
        -
        quality
        A production-ready Model Context Protocol server implementation that connects AI assistants to the TON blockchain, allowing them to query wallet balances, transaction details, smart contracts, and other blockchain data.
        Last updated 2 months ago
        TypeScript
        MIT License

      View all related MCP servers

      ID: oumg0xfft3