---
title: Augment Code
description: Install Docfork MCP in Augment Code
---
To configure Docfork MCP in Augment Code, you can use either the graphical interface or manual configuration.
### Using the Augment Code UI
1. Click the hamburger menu.
2. Select **Settings**.
3. Navigate to the **Tools** section.
4. Click the **+ Add MCP** button.
5. Enter the following command:
```
npx -y docfork@latest
```
6. Name the MCP: **Docfork**.
7. Click the **Add** button.
### Manual Configuration
1. Press Cmd/Ctrl Shift P or go to the hamburger menu in the Augment panel
2. Select Edit Settings
3. Under Advanced, click Edit in settings.json
4. Add the server configuration to the `mcpServers` array in the `augment.advanced` object
```json theme={null}
"augment.advanced": {
"mcpServers": [
{
"name": "docfork",
"command": "npx",
"args": ["-y", "docfork", "--api-key", "YOUR_API_KEY"]
}
]
}
```