MCP Blockchain Server
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
Integrations
Handles environment variable configuration for the MCP Blockchain Server
Provides containerization support for running the PostgreSQL database, Redis cache, MCP Server, and Web DApp as a complete system
Enables reading balances, contract state, and other on-chain data from the Ethereum blockchain, as well as preparing unsigned transactions for user approval and signing
MCP Blockchain Server & DApp
A secure system enabling AI assistants to interact with blockchain smart contracts while ensuring users maintain complete control over their private keys and transaction signing.
Overview
This project addresses a key challenge in AI-blockchain integration: allowing AI assistants to read blockchain data and prepare transactions while ensuring users maintain exclusive control over transaction signing and private keys.
The system consists of:
- MCP Server: A Model Context Protocol server that exposes blockchain operations as tools that can be used by AI assistants
- Web DApp: A React application that provides a user interface for wallet connection and transaction signing
- Database: PostgreSQL database for storing users, API keys, and transaction records
- Caching: Redis for caching frequently accessed data
Features
MCP Server Features
- Blockchain Data Access: Read balances, contract state, and other on-chain data
- Transaction Preparation: Create unsigned transactions for user approval
- Multi-Chain Support: Works with Ethereum, Polygon, and other EVM-compatible chains
- Smart Contract Interaction: Read from verified smart contracts on supported networks
- Security-First Design: Private keys never leave the user's wallet
Web DApp Features
- Wallet Integration: Connect with MetaMask and other Web3 wallets
- Transaction Review: Clear UI for reviewing transaction details before signing
- Transaction Signing: Sign transactions with connected wallet
- Transaction Tracking: Monitor status of submitted transactions
- Mobile Compatibility: Responsive design works on all devices
Security Principles
- Private Key Isolation: Keys never leave the user's wallet
- Transaction Verification: Clear UI for reviewing transaction details
- API Authentication: Secure API key management
- Rate Limiting: Prevent abuse
- Input Validation: Sanitize all inputs
- Audit Logging: Track all operations
- HTTPS Only: Secure communications
- Content Security Policy: Prevent XSS
Transaction Flow
- AI assistant requests transaction through MCP Server
- MCP Server prepares unsigned transaction with UUID
- MCP Server returns transaction URL to AI assistant
- AI assistant provides URL to user
- User opens URL in browser
- User connects wallet and reviews transaction details
- User approves and signs transaction with their wallet
- Web DApp submits signed transaction to blockchain
- Transaction status is updated and tracked
Getting Started
Prerequisites
- Node.js (v18 or higher)
- npm or yarn
- PostgreSQL
- Redis (optional, for caching)
- Infura API key (for blockchain access)
- Etherscan API key (for contract ABIs)
Installation
- Clone the repository:
- Install dependencies:
- Set up environment variables:
Create a
.env
file in the root directory (or copy from.env.example
):
- Set up the database:
See Database Setup Guide for detailed instructions on installing and configuring PostgreSQL.
- Start the server:
Using Docker Compose
For a quick start using Docker:
This will start:
- PostgreSQL database
- Redis cache
- MCP Server
- Web DApp
Development
Server Structure
src/mcp
: MCP server implementationsrc/services
: Core business logic servicessrc/utils
: Utility functionssrc/index.ts
: Main entry point
Web DApp Structure
web/src/components
: React componentsweb/src/hooks
: Custom React hooksweb/src/services
: API servicesweb/src/pages
: Page components
Using the MCP Server
The MCP Server exposes several tools that can be used by AI assistants:
get-chains
: Get list of supported blockchain networksget-balance
: Get account balance for an addressread-contract
: Read data from a smart contractprepare-transaction
: Prepare an unsigned transaction for user approvalget-transaction-status
: Get the current status of a transaction
Example Tool Usage
Troubleshooting
If you encounter issues with dependencies:
For database connection issues, see the Database Setup Guide.
License
This project is licensed under the MIT License - see the LICENSE file for details.
This server cannot be installed
A secure system enabling AI assistants to interact with blockchain data and prepare transactions while ensuring users maintain exclusive control over their private keys and transaction signing.
- Overview
- Features
- Security Principles
- Transaction Flow
- Getting Started
- Development
- Using the MCP Server
- Troubleshooting
- License