HTTP for VS Code
io.github.abhishekkumar2021/http
HTTP/REST client with saved collections, env secrets, and SSRF-safe host allowlisting.
client:VS Code
transport:stdio
runtime:npm
Install HTTP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "http-allow-hosts",
"description": "HTTP_ALLOW_HOSTS",
"password": true
},
{
"type": "promptString",
"id": "http-writable",
"description": "HTTP_WRITABLE",
"password": true
}
],
"servers": {
"http": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@abhishekmcp/http"
],
"env": {
"HTTP_ALLOW_HOSTS": "${input:http-allow-hosts}",
"HTTP_WRITABLE": "${input:http-writable}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs