From 35c6605681631e5c8ed7d80d9ff1c06d02368899 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Sat, 17 Jan 2026 10:50:35 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E7=AE=80=E5=8C=96=20ACE=20Tool=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E4=B8=BA=E9=93=BE=E6=8E=A5=E5=BD=A2=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 官方文档: docs.augmentcode.com - 代理版本: github.com/eastxiaodong/ace-tool --- README.md | 52 ++++------------------------------------------------ README_CN.md | 52 ++++------------------------------------------------ 2 files changed, 8 insertions(+), 96 deletions(-) diff --git a/README.md b/README.md index 815e1b9c..ec5ef24c 100644 --- a/README.md +++ b/README.md @@ -142,54 +142,10 @@ qwen --version ACE (Augment Context Engine) provides powerful semantic code search. -### Method 1: Official Installation (Recommended) - -Use Anthropic's official MCP package directly: - -```json -{ - "mcpServers": { - "ace-tool": { - "command": "npx", - "args": ["-y", "@anthropic/ace-mcp"], - "env": { - "AUGMENT_API_KEY": "your-augment-api-key" - } - } - } -} -``` - -**Get API Key**: From [Augment Developer Portal](https://augment.dev) - -### Method 2: Proxy Installation - -For network-restricted environments: - -```json -{ - "mcpServers": { - "ace-tool": { - "command": "npx", - "args": ["-y", "@anthropic/ace-mcp"], - "env": { - "AUGMENT_API_KEY": "your-api-key", - "HTTPS_PROXY": "http://your-proxy:port", - "HTTP_PROXY": "http://your-proxy:port" - } - } - } -} -``` - -### Usage - -```javascript -mcp__ace-tool__search_context({ - project_root_path: "/path/to/project", - query: "user authentication logic" -}) -``` +| Method | Link | +|--------|------| +| 📘 **Official** | [Augment MCP Documentation](https://docs.augmentcode.com/context-services/mcp/overview) | +| 🔧 **Proxy Version** | [ace-tool (GitHub)](https://github.com/eastxiaodong/ace-tool) | --- diff --git a/README_CN.md b/README_CN.md index b900dabd..2f13239b 100644 --- a/README_CN.md +++ b/README_CN.md @@ -142,54 +142,10 @@ qwen --version ACE (Augment Context Engine) 提供强大的语义代码搜索能力。 -### 方式一:官方安装(推荐) - -直接使用 Anthropic 官方 MCP 包: - -```json -{ - "mcpServers": { - "ace-tool": { - "command": "npx", - "args": ["-y", "@anthropic/ace-mcp"], - "env": { - "AUGMENT_API_KEY": "your-augment-api-key" - } - } - } -} -``` - -**获取 API Key**: 从 [Augment 开发者门户](https://augment.dev) 获取 - -### 方式二:代理安装 - -如果网络受限,可通过代理服务器配置: - -```json -{ - "mcpServers": { - "ace-tool": { - "command": "npx", - "args": ["-y", "@anthropic/ace-mcp"], - "env": { - "AUGMENT_API_KEY": "your-api-key", - "HTTPS_PROXY": "http://your-proxy:port", - "HTTP_PROXY": "http://your-proxy:port" - } - } - } -} -``` - -### 使用方式 - -```javascript -mcp__ace-tool__search_context({ - project_root_path: "/path/to/project", - query: "用户认证逻辑" -}) -``` +| 方式 | 链接 | +|------|------| +| 📘 **官方安装** | [Augment MCP 文档](https://docs.augmentcode.com/context-services/mcp/overview) | +| 🔧 **代理版本** | [ace-tool (GitHub)](https://github.com/eastxiaodong/ace-tool) | ---