一键导入
evocli-mcp-integration
Use when connecting external MCP servers to EvoCLI or using EvoCLI as an MCP server for external AI clients.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when connecting external MCP servers to EvoCLI or using EvoCLI as an MCP server for external AI clients.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when you need to store or retrieve long-term information in an EvoCLI project. Covers constraint, episodic, semantic, and procedural memory types.
Use when creating executable automation workflows (Skills) for an EvoCLI project. Covers TOML skill format, dry-run verification, lifecycle management.
Use this skill when working in an EvoCLI-powered project to leverage its unique capabilities: long-term memory, skills, workflow automation, and code intelligence.
| name | evocli-mcp-integration |
| description | Use when connecting external MCP servers to EvoCLI or using EvoCLI as an MCP server for external AI clients. |
EvoCLI fully supports the Model Context Protocol (MCP), allowing it to act as both an MCP Client (consuming tools from other servers) and an MCP Server (exposing its 117+ tools to other AI clients like Claude Desktop or Cursor).
You can extend EvoCLI's capabilities by connecting it to any MCP-compliant server.
Use the evocli mcp connect command:
evocli mcp connect postgres npx -y @modelcontextprotocol/server-postgres postgres://localhost:5432/mydb
Once connected, the tools from the external server are prefixed with the server name and made available to the AI agent:
postgres.query_datapostgres.list_tablesevocli mcp list: Show all connected MCP servers and their status.evocli mcp disconnect <name>: Remove a server.evocli mcp refresh <name>: Re-scan for new tools or resources.You can use EvoCLI's powerful Rust-backed tools inside other AI editors.
Run the following command to start the EvoCLI MCP server:
evocli mcp serve
This starts a stdio-based MCP server. You can then add this to your claude_desktop_config.json or Cursor settings.
{
"mcpServers": {
"evocli": {
"command": "evocli",
"args": ["mcp", "serve"]
}
}
}
EvoCLI also exposes its memory system and skill library as MCP Resources and Prompts.
mcp://evocli/memory/p1.mcp://evocli/prompts/code-review.When acting as a client, EvoCLI applies its standard security model to external tools:
npx) are installed.read_file tool, they will be server1.read_file and server2.read_file.~/.evocli/config.toml.