Dysnomia Ecosystem Navigator — MCP Server
Enables AI assistants to interact with the Dysnomia blockchain ecosystem on PulseChain, allowing natural language queries for contract state, transaction debugging, minter tracing, and ecosystem graph mapping.
README
Dysnomia Ecosystem Navigator — MCP Server
An MCP (Model Context Protocol) server that gives AI assistants direct access to the Dysnomia/Atropa blockchain ecosystem on PulseChain. Ask Claude about contract state, debug transactions, trace minters, and map the entire ecosystem graph — all from natural language.
Tools
| Tool | Description |
|---|---|
list_ecosystem |
List all registered contracts with categories and descriptions |
get_contract_state |
Read on-chain state — balances, supply, ownership, minting status |
trace_minter |
Trace a minter address across all ecosystem contracts |
query_qing |
Look up QING territory data — ownership, metadata |
debug_call |
Simulate contract calls to surface reverts before spending gas |
map_relationships |
Map ownership and dependency graph between contracts |
search_events |
Query on-chain event logs filtered by contract, event, block range |
Setup
# Install dependencies
npm install
# Build
npm run build
Configuration
1. Add Contract Addresses
Edit src/config.ts and fill in the deployed addresses:
META: { address: "0x...", category: "core", description: "Root coordination contract" },
RING: { address: "0x...", category: "core", description: "Ring structure / orbital mechanics" },
// etc.
Rebuild after changes: npm run build
2. Custom RPC
Set the PULSECHAIN_RPC environment variable to override the default RPC:
export PULSECHAIN_RPC="https://your-rpc-endpoint.com"
3. Extend ABIs
Each tool file in src/tools/ has its own ABI definitions. Add function signatures as contracts evolve — the pattern is human-readable ABI strings:
const MY_ABI = [
"function MyNewFunction(uint256) view returns (address)",
];
Connect to Claude Desktop
Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on Mac):
{
"mcpServers": {
"dysnomia": {
"command": "node",
"args": ["/absolute/path/to/dysnomia-navigator/build/index.js"],
"env": {
"PULSECHAIN_RPC": "https://rpc.pulsechain.com"
}
}
}
}
Connect to Claude Code
claude mcp add dysnomia node /absolute/path/to/dysnomia-navigator/build/index.js
Test with MCP Inspector
npm run inspector
Architecture
src/
├── index.ts # Entry point — creates server, registers tools
├── config.ts # RPC config, contract registry, ABIs, helpers
└── tools/
├── listEcosystem.ts # list_ecosystem
├── getContractState.ts # get_contract_state
├── traceMinter.ts # trace_minter
├── queryQing.ts # query_qing
├── debugCall.ts # debug_call
├── mapRelationships.ts # map_relationships
└── searchEvents.ts # search_events
Extending
To add a new tool:
- Create
src/tools/myNewTool.ts - Export a
registerMyNewTool(server: McpServer)function - Import and call it in
src/index.ts - Rebuild:
npm run build
The server uses stdio transport so it works with any MCP-compatible client.
Phases (for context)
- Terra: Forming data on minters — physics actions per-QING build minter token data
- Firma: Personal GWATs establishing territory
- Life: IoT hardware + YUE extensions creating real-world activity sandboxes
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.