easytable mcp for VS Code
io.github.chrischall/easytable-mcp
easyTable restaurant reservations for Claude — availability, and create/modify/cancel bookings
client:VS Code
transport:stdio
runtime:npm
Install easytable mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "easytable-ws-port",
"description": "EASYTABLE_WS_PORT",
"password": true
}
],
"servers": {
"easytable-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"easytable-mcp"
],
"env": {
"EASYTABLE_WS_PORT": "${input:easytable-ws-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs