reversecentaur mcp for VS Code
io.github.brandonbgreen/reversecentaur-mcp
Hire humans for tasks AI can't do. Fair trade pay floors, prepaid escrow, ethical receipts.
client:VS Code
transport:stdio
runtime:npm
Install reversecentaur mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "reversecentaur-api-key",
"description": "REVERSECENTAUR_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "reversecentaur-api-url",
"description": "REVERSECENTAUR_API_URL",
"password": true
},
{
"type": "promptString",
"id": "reversecentaur-mock-mode",
"description": "REVERSECENTAUR_MOCK_MODE",
"password": true
}
],
"servers": {
"reversecentaur-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"reversecentaur-mcp"
],
"env": {
"REVERSECENTAUR_API_KEY": "${input:reversecentaur-api-key}",
"REVERSECENTAUR_API_URL": "${input:reversecentaur-api-url}",
"REVERSECENTAUR_MOCK_MODE": "${input:reversecentaur-mock-mode}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs