datasieve for VS Code
io.github.gitwormq/datasieve
On-chain watches, web-page monitors, dead-man switches, cron, and agent coordination, paid via x402.
client:VS Code
transport:stdio
runtime:npm
Install datasieve in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "datasieve-private-key-file",
"description": "DATASIEVE_PRIVATE_KEY_FILE",
"password": true
},
{
"type": "promptString",
"id": "datasieve-api-url",
"description": "DATASIEVE_API_URL",
"password": true
}
],
"servers": {
"datasieve": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"datasieve-mcp"
],
"env": {
"DATASIEVE_PRIVATE_KEY_FILE": "${input:datasieve-private-key-file}",
"DATASIEVE_API_URL": "${input:datasieve-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs