Model Context Protocol (MCP) server for the AnChain.AI Data API - a comprehensive blockchain intelligence platform powered by AI/ML that enables developers, investigators, and compliance officers to manage risk and ensure regulatory compliance in Web3 applications.
Core risk assessment and entity identification for blockchain addresses and transactions, delivering real-time risk scores, category labels, and suspicious activity detection.
Advanced behavioral analysis and transaction flow tracking, including statistical insights, attribution analysis, transaction graphs, automated tracing, and smart contract analysis.
Comprehensive screening against global watchlists, including OFAC and international sanctions databases from multiple jurisdictions (US, EU, UK, Canada, Australia, Switzerland, Israel, Japan, UN, South Africa, and Zambia).
Curated threat intelligence and industry news aggregation from specialized blockchain and cryptocurrency sources.
- Python 3.12 or higher
uvpackage manager
- Install
uvif you haven't already:
pip install uv- Clone this repository:
git clone <repository-url>
cd anchain-data-mcp- Initialize the project and install dependencies:
uv init
uv syncThis will set up the virtual environment and install all required packages from your project configuration.
Sign up and obtain your AnChain API key at: https://data.anchainai.com
Full API documentation is also available at the same URL.
Add the following configuration to your Claude Desktop config file:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"anchain-data": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/anchain-data-mcp",
"mcp_server.py",
"--ANCHAIN_APIKEY",
"your_api_key_here"
]
}
}
}Replace /path/to/anchain-data-mcp with the actual path to your project folder and your_api_key_here with your AnChain API key.
Add the following to your Cursor MCP settings file mcp.json:
{
"mcpServers": {
"anchain-data": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/anchain-data-mcp",
"mcp_server.py",
"--ANCHAIN_APIKEY",
"your_api_key_here"
]
}
}
}For other AI platforms that support the Model Context Protocol (such as Zed, Sourcegraph Cody, or custom integrations), add a similar configuration to their MCP settings file:
{
"mcpServers": {
"anchain-data": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/anchain-data-mcp",
"mcp_server.py",
"--ANCHAIN_APIKEY",
"your_api_key_here"
]
}
}
}Consult your platform's documentation for the exact location of the MCP configuration file.
Once configured, the AnChain Data MCP server will be available in Claude Desktop. You can ask Claude to:
- Assess blockchain address risks
- Screen addresses against sanctions lists
- Analyze transaction patterns
- Investigate smart contracts
- Access blockchain intelligence and news
The MCP server exposes all AnChain.AI Data API capabilities as tools that Claude can use automatically based on your requests.
For detailed API documentation and capabilities, visit: https://data.anchainai.com
This project is licensed under the GPL License.
For issues, questions, or feature requests, please refer to the AnChain.AI documentation or contact support through https://data.anchainai.com