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: README.md
+56Lines changed: 56 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -113,6 +113,62 @@ To install Firecrawl for Claude Desktop automatically via [Smithery](https://smi
113
113
npx -y @smithery/cli install @mendableai/mcp-server-firecrawl --client claude
114
114
```
115
115
116
+
### Running on VS Code
117
+
118
+
For one-click installation, click one of the install buttons below...
119
+
120
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=firecrawl&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22apiKey%22%2C%22description%22%3A%22Firecrawl%20API%20Key%22%2C%22password%22%3Atrue%7D%5D&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22firecrawl-mcp%22%5D%2C%22env%22%3A%7B%22FIRECRAWL_API_KEY%22%3A%22%24%7Binput%3AapiKey%7D%22%7D%7D) [](https://insiders.vscode.dev/redirect/mcp/install?name=firecrawl&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22apiKey%22%2C%22description%22%3A%22Firecrawl%20API%20Key%22%2C%22password%22%3Atrue%7D%5D&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22firecrawl-mcp%22%5D%2C%22env%22%3A%7B%22FIRECRAWL_API_KEY%22%3A%22%24%7Binput%3AapiKey%7D%22%7D%7D&quality=insiders)
121
+
122
+
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing `Ctrl + Shift + P` and typing `Preferences: Open User Settings (JSON)`.
123
+
124
+
```json
125
+
{
126
+
"mcp": {
127
+
"inputs": [
128
+
{
129
+
"type": "promptString",
130
+
"id": "apiKey",
131
+
"description": "Firecrawl API Key",
132
+
"password": true
133
+
}
134
+
],
135
+
"servers": {
136
+
"firecrawl": {
137
+
"command": "npx",
138
+
"args": ["-y", "firecrawl-mcp"],
139
+
"env": {
140
+
"FIRECRAWL_API_KEY": "${input:apiKey}"
141
+
}
142
+
}
143
+
}
144
+
}
145
+
}
146
+
```
147
+
148
+
Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace. This will allow you to share the configuration with others:
0 commit comments