ordiscan-mcp
v0.1.3
Published
MCP server for retrieving Ordinals data
Downloads
53
Readme
Ordiscan MCP Server
A model context protocol server for getting information about Ordinals and Runes on Bitcoin
Installation
To use with Claude Desktop, add the server config:
- On MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json - On Windows:
%APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"ordiscan-server": {
"command": "node",
"args": [
"/path/to/ordiscan-mcp/build/index.js"
],
"env": {
"ORDISCAN_API_KEY": "YOUR_API_KEY"
}
},
}
}Note that you need an Ordiscan API key, which you can obtain for free here.
Development
Install dependencies:
npm installBuild the server:
npm run buildFor development with auto-rebuild:
npm run watch