Skip to content

Commit c016977

Browse files
committed
separate cursor and vscode installation instructions
1 parent 3fbcbc0 commit c016977

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

README.md

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ Or add to your `claude.json`:
8181
}
8282
```
8383

84-
### Cursor / VS Code
84+
### Cursor
8585

86-
Add to your `mcp.json` (Cursor) or `.vscode/mcp.json` (VS Code):
86+
Add to your `mcp.json` (Cursor):
8787

8888
```json
8989
{
@@ -92,14 +92,35 @@ Add to your `mcp.json` (Cursor) or `.vscode/mcp.json` (VS Code):
9292
"command": "npx",
9393
"args": ["-y", "@perplexity-ai/mcp-server"],
9494
"env": {
95-
"PERPLEXITY_API_KEY": "your_key_here",
96-
"PERPLEXITY_TIMEOUT_MS": "600000"
95+
"PERPLEXITY_API_KEY": "your_key_here"
9796
}
9897
}
9998
}
10099
}
101100
```
102101

102+
### VS Code
103+
104+
Add to your `.vscode/mcp.json` (VS Code):
105+
106+
```json
107+
{
108+
"servers": {
109+
"perplexity": {
110+
"type": "stdio",
111+
"command": "npx",
112+
"args": [
113+
"-y",
114+
"@perplexity-ai/mcp-server"
115+
],
116+
"env": {
117+
"PERPLEXITY_API_KEY": "your_key_here"
118+
}
119+
}
120+
}
121+
}
122+
```
123+
103124
Or use the one-click install badges at the top of this README.
104125

105126
### Codex

0 commit comments

Comments
 (0)