loading…
Search for a command to run...
loading…
Provides tools for AI assistants to query the Canton Network for data on contracts, governance, validators, and party transactions through the Lighthouse Explor
Provides tools for AI assistants to query the Canton Network for data on contracts, governance, validators, and party transactions through the Lighthouse Explorer API. It enables seamless interaction with blockchain statistics, price history, and name services without requiring an API key.
An MCP (Model Context Protocol) server for the 5N Lighthouse Explorer API at lighthouse.cantonloop.com.
This server provides AI assistants (Claude, etc.) with tools to query the Canton Network via the Lighthouse Explorer. It covers CNS (Canton Name Service), governance, validators, parties, contracts, transfers, prices, and more.
No API key required — this is a public API.
| Status | Count | Description |
|---|---|---|
| ✅ Working | 27 | Tested and working reliably |
| ⚠️ API Limit | 4 | Endpoints don't exist on public API |
| 🐛 API Bug | 1 | Server-side bug (transfer_get) |
Total: 28 tools defined
# Clone the repo
git clone https://github.com/agenticledger/ClientMCP_LIGHTHOUSE_MCPSERVER.git
cd ClientMCP_LIGHTHOUSE_MCPSERVER
# Install dependencies
npm install
# Build
npm run build
No API key required! Just configure Claude Desktop:
Add to your claude_desktop_config.json:
{
"mcpServers": {
"lighthouse": {
"command": "node",
"args": ["/path/to/lighthouse-mcp-server/dist/index.js"]
}
}
}
| Tool | Description |
|---|---|
cns_list |
List CNS records with pagination |
cns_get |
Get a CNS record by domain name |
| Tool | Description |
|---|---|
contracts_list |
List contracts with pagination |
contract_get |
Get contract details by contract_id (hex) |
| Tool | Description |
|---|---|
featured_apps_get |
Get list of featured applications |
| Tool | Description |
|---|---|
governance_list |
List all governance vote requests |
governance_stats |
Get governance statistics |
governance_get |
Get vote request details by ID |
| Tool | Description |
|---|---|
party_balance |
Get CC balance for a party |
party_burns |
List burns for a party |
party_pnl |
Get profit/loss data |
party_rewards |
List rewards earned |
party_burn_stats |
Aggregated burn stats |
party_reward_stats |
Aggregated reward stats |
party_transfers |
List party transfers |
party_transactions |
List party transactions |
| Tool | Description |
|---|---|
preapprovals_list |
List preapproval records |
| Tool | Description |
|---|---|
price_get |
Get latest CC price in USD |
price_history |
Get 24-hour price history |
| Tool | Description |
|---|---|
rounds_list |
List consensus rounds |
round_get |
Get round details by number |
| Tool | Description |
|---|---|
search |
Universal search across entities |
| Tool | Description |
|---|---|
stats_get |
Get chain statistics |
| Tool | Description |
|---|---|
transactions_list |
List transactions |
transaction_get |
Get transaction by update ID |
| Tool | Description |
|---|---|
transfers_list |
List all transfers |
| Tool | Description |
|---|---|
validators_list |
Get all validators |
validator_get |
Get validator details by ID |
Use the stats_get tool to see current chain statistics
Use price_get to get the latest CC price in USD
Use search with q="Cumberland" to find parties by name
Use party_balance with id="Global-Synchronizer-Foundation::1220b086..." to check CC balance
Run the test suite:
npm test
lighthouse-mcp-server/
├── src/
│ ├── api-client.ts # HTTP client for Lighthouse API
│ ├── tools.ts # MCP tool definitions (28 tools)
│ └── index.ts # Server entry point
├── test/
│ └── test-tools.ts # Automated test suite
├── docs/
│ ├── index.html # Interactive API docs
│ └── TEST-RESULTS.md # Test results
├── dist/ # Compiled JavaScript
├── package.json
├── tsconfig.json
└── README.md
/sv (super validators) - use /validators instead/me (participant info) - not on public API/stats/rounds/latest - endpoint removedtransfer_get - API returns HTTP 500 (bug)MIT
Ore Phillips (@oregpt)
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"lighthouse-explorer-mcp-server": {
"command": "npx",
"args": []
}
}
}