Back to MCP directory
publicPublicdnsLocal runtime

ordiscan-mcp

Ordiscan MCP Server是一个用于获取比特币上Ordinals和Runes信息的模型上下文协议服务器

article

README

🚀 Ordiscan MCP 服务器

Ordiscan MCP 服务器是一个用于获取比特币上的铭文和符文信息的模型上下文协议服务器,为相关信息获取提供了有效的解决方案。

相关链接

🚀 快速开始

本部分将介绍如何在Claude Desktop上使用Ordiscan MCP服务器,以及开发该服务器的相关步骤。

📦 安装指南

要在Claude Desktop上使用,需添加服务器配置:

  • 在 MacOS 上:配置文件路径为 ~/Library/Application Support/Claude/claude_desktop_config.json
  • 在 Windows 上:配置文件路径为 %APPDATA%/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "ordiscan": {
      "command": "npx",
      "args": [
        "ordiscan-mcp@latest"
      ],
      "env": {
        "ORDISCAN_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

⚠️ 重要提示

你需要一个Ordiscan API密钥,可免费获取这里

🔧 开发步骤

安装依赖

npm install

构建服务器

npm run build

带有自动重建功能的开发

npm run watch
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client