mcp-blockchain-connector
A standardized utility layer within the MCP framework enabling seamless interaction with decentralized ledger technologies (DLT) and on-chain data access mechanisms. It furnishes the necessary components and abstractions for embedding distributed ledger capabilities into host applications.
Author

tdergouzi
Quick Info
Actions
Tags
mcp-server-web3
This module serves as the foundational plugin server for Web3 operations, architected upon the Anthropic MCP specification.
Installation Procedure
Execute the following command to acquire necessary dependencies:
sh yarn
Code Compilation
To transform the source into the executable bundle (index.js):
sh yarn build
Configuration Update for Client Integration
Modify the configuration file for your local client instance (e.g., MacOS/Claude desktop environment):
sh
Command to open configuration file on MacOS/Claude client
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
Insert or update the server definition within the mcpServers block:
{ "mcpServers": { "web3": { "command": "node", "args": ["/ABSOLUTE/PATH/TO/PARENT/FOLDER/mcp-server-web3/build/index.js"], "env":{ "CMC_API_KEY": "your cmc api key" } } } }
