serpapi hotels for VS Code
com.pulsemcp/serpapi-hotels
MCP server for searching Google Hotels via SerpAPI — hotel search, pricing, ratings, and reviews.
client:VS Code
transport:stdio
runtime:npm
Install serpapi hotels in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "serpapi-api-key",
"description": "SERPAPI_API_KEY",
"password": true
}
],
"servers": {
"serpapi-hotels": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"serpapi-hotels-mcp-server"
],
"env": {
"SERPAPI_API_KEY": "${input:serpapi-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs