mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
docs: 简化 ACE Tool 配置为链接形式
- 官方文档: docs.augmentcode.com - 代理版本: github.com/eastxiaodong/ace-tool
This commit is contained in:
52
README.md
52
README.md
@@ -142,54 +142,10 @@ qwen --version
|
|||||||
|
|
||||||
ACE (Augment Context Engine) provides powerful semantic code search.
|
ACE (Augment Context Engine) provides powerful semantic code search.
|
||||||
|
|
||||||
### Method 1: Official Installation (Recommended)
|
| Method | Link |
|
||||||
|
|--------|------|
|
||||||
Use Anthropic's official MCP package directly:
|
| 📘 **Official** | [Augment MCP Documentation](https://docs.augmentcode.com/context-services/mcp/overview) |
|
||||||
|
| 🔧 **Proxy Version** | [ace-tool (GitHub)](https://github.com/eastxiaodong/ace-tool) |
|
||||||
```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"
|
|
||||||
})
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
52
README_CN.md
52
README_CN.md
@@ -142,54 +142,10 @@ qwen --version
|
|||||||
|
|
||||||
ACE (Augment Context Engine) 提供强大的语义代码搜索能力。
|
ACE (Augment Context Engine) 提供强大的语义代码搜索能力。
|
||||||
|
|
||||||
### 方式一:官方安装(推荐)
|
| 方式 | 链接 |
|
||||||
|
|------|------|
|
||||||
直接使用 Anthropic 官方 MCP 包:
|
| 📘 **官方安装** | [Augment MCP 文档](https://docs.augmentcode.com/context-services/mcp/overview) |
|
||||||
|
| 🔧 **代理版本** | [ace-tool (GitHub)](https://github.com/eastxiaodong/ace-tool) |
|
||||||
```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: "用户认证逻辑"
|
|
||||||
})
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user