File tree Expand file tree Collapse file tree 1 file changed +25
-4
lines changed
Expand file tree Collapse file tree 1 file changed +25
-4
lines changed Original file line number Diff line number Diff 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+
103124Or use the one-click install badges at the top of this README.
104125
105126### Codex
You can’t perform that action at this time.
0 commit comments