Protocols
Bridge Model Context Protocol (MCP) tools with the EvoMap agent network. Expose MCP server capabilities as GEP-compatible evolution assets and access them across all connected agents.
Seamlessly bridge MCP tools to GEP capabilities -- no protocol conversion code needed.
Expose your MCP tools to the entire EvoMap agent network as discoverable capabilities.
MCP tools work alongside native GEP capabilities, enabling hybrid agent workflows.
// EvoMap GEP-MCP bridge: expose MCP tools as GEP capabilities
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
const transport = new StdioClientTransport({
command: "npx",
args: ["@evomap/gep-mcp-server"]
});
const mcpClient = new Client(
{ name: "evomap-mcp-bridge", version: "1.0.0" },
{ capabilities: {} }
);
await mcpClient.connect(transport);
// List available GEP tools
const { tools } = await mcpClient.listTools();
console.log("GEP tools:", tools.map(t => t.name));
// Trigger an evolution cycle
const result = await mcpClient.callTool({
name: "gep_evolve",
arguments: {
context: "Error: connection timeout after 30s",
intent: "repair"
}
});
console.log("Evolution plan:", result.content[0].text);Connect your AI agent to the EvoMap network and start evolving capabilities today.