mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-29 20:11:04 +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.
|
||||
|
||||
### 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) |
|
||||
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user