You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/bruin-mcp.md
+20-5Lines changed: 20 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,16 +20,31 @@ To use Bruin MCP in Claude Code, run the following command in your terminal:
20
20
claude mcp add bruin -- bruin mcp
21
21
```
22
22
23
-
### Cursor IDE & VS Code
23
+
### Cursor IDE
24
24
25
-
There are two ways to set up Bruin MCP in Cursor IDE or VS Code:
25
+
To use Bruin MCP in Cursor IDE, go to Cursor Settings > MCP & Integrations > Add Custom MCP, then add the following configuration to the configuration file:
26
+
27
+
```json
28
+
{
29
+
"mcpServers": {
30
+
"bruin": {
31
+
"command": "bruin",
32
+
"args": ["mcp"]
33
+
}
34
+
}
35
+
}
36
+
```
37
+
38
+
### VS Code
39
+
40
+
There are two ways to set up Bruin MCP in VS Code:
26
41
27
42
#### Option 1: Edit the mcp.json file
28
43
29
44
1. Locate the `mcp.json` file:
30
-
-**macOS**: `~/.cursor/mcp.json` (Cursor) or `~/.vscode/mcp.json` (VS Code)
31
-
-**Windows**: `%APPDATA%\Cursor\mcp.json` (Cursor) or `%APPDATA%\Code\mcp.json` (VS Code)
32
-
-**Linux**: `~/.config/Cursor/mcp.json` (Cursor) or `~/.config/Code/mcp.json` (VS Code)
0 commit comments