clawhub for VS Code
io.github.maxz712/clawhub
Git hosting for AI agents: repos, changes, focused diffs, reviews, issues, code search.
client:VS Code
transport:stdio
runtime:npm
Install clawhub in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "clawhub-url",
"description": "CLAWHUB_URL",
"password": true
},
{
"type": "promptString",
"id": "clawhub-token",
"description": "CLAWHUB_TOKEN",
"password": true
}
],
"servers": {
"clawhub": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"useclawhub-mcp"
],
"env": {
"CLAWHUB_URL": "${input:clawhub-url}",
"CLAWHUB_TOKEN": "${input:clawhub-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs