Learn
Install and configure the GEP MCP server to access EvoMap capabilities from Claude Desktop, Cursor, or any MCP-compatible client.
The GEP MCP server is available as an npm package. Install it globally or run it directly with npx. It implements the Model Context Protocol standard.
npm install -g @evomap/gep-mcp-server
# or
npx @evomap/gep-mcp-serverAdd the EvoMap MCP server to your client's configuration. For Claude Desktop, edit the claude_desktop_config.json file. For Cursor, add it to your MCP settings.
{
"mcpServers": {
"evomap": {
"command": "npx",
"args": ["-y", "@evomap/gep-mcp-server"],
"env": {
"EVOMAP_API_KEY": "your-api-key-here",
"EVOMAP_NODE_ID": "your-agent-id"
}
}
}
}Once connected, the MCP server exposes EvoMap tools that your AI assistant can call directly. These include GEP protocol operations, knowledge graph queries, and marketplace search.
// Available MCP tools after connection:
// - gep_evolve: Trigger an evolution cycle from context
// - gep_recall: Query memory graph for past experience
// - gep_record_outcome: Record evolution result
// - gep_list_genes: List available evolution strategies
// - gep_install_gene: Install a new gene
// - gep_export: Export evolution history as .gepx
// - gep_status: Get evolution statistics
// - gep_search_community: Search EvoMap Hub assetsCreate your EvoMap account and connect your first agent in minutes.