返回市场
磁盘扫描-mcp

磁盘扫描-mcp

作者:ordiscan8 星标更新:2025-04-03

项目介绍

Ordiscan MCP Server

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

https://github.com/user-attachments/assets/9dddacdf-add0-4a96-8444-5e0803e695a7

安装

要在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