Mesh Agent MCP Server
Overview
Mesh Agent MCP Server is a Model Context Protocol (MCP) server that connects to Heurist Mesh APIs, providing access to various blockchain and web3 tools.
To use the server, clone the repository, install the required packages, and run it with either stdio or SSE transport, configuring it with your Heurist API key.
- Connects to the Heurist Mesh API - Loads tools for cryptocurrency data and Web3 use cases - Supports both SSE and stdio transports - Works with Claude in Cursor, Claude Desktop, and other MCP-compatible interfaces - Use one API key to access multiple services
- Analyzing blockchain data and smart contract security.
- Accessing cryptocurrency market data through CoinGecko.
- Fetching trending tokens and trading pair information.
Add to your AI client
Use these steps to connect Mesh Agent MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"heurist-mesh-mcp-server-heurist-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-heurist-mesh-mcp-server-heurist-network"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"heurist-mesh-mcp-server-heurist-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-heurist-mesh-mcp-server-heurist-network"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"heurist-mesh-mcp-server-heurist-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-heurist-mesh-mcp-server-heurist-network"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"heurist-mesh-mcp-server-heurist-network": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-heurist-mesh-mcp-server-heurist-network"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"heurist-mesh-mcp-server-heurist-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-heurist-mesh-mcp-server-heurist-network"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"heurist-mesh-mcp-server-heurist-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-heurist-mesh-mcp-server-heurist-network"
]
}
}
}FAQ
What are the prerequisites to run the server?
You need Python 3.10 or higher, UV package manager or Docker, and a Heurist API key.
Is there a way to customize the available agents?
Yes! You can modify the `DEFAULT_AGENTS` list in the `server.py` file to add or remove agents.
How can I get a Heurist API key?
You can get a Heurist API key by following the instructions on the Heurist documentation.