veddata for VS Code
io.github.sanzineo/veddata
MCP server for AI agents: discover a web page's data sources and drive the page to reach them.
client:VS Code
transport:stdio
runtime:pypi
Install veddata in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "headless",
"description": "HEADLESS",
"password": true
},
{
"type": "promptString",
"id": "browser-path",
"description": "BROWSER_PATH",
"password": true
}
],
"servers": {
"veddata": {
"type": "stdio",
"command": "uvx",
"args": [
"veddata"
],
"env": {
"HEADLESS": "${input:headless}",
"BROWSER_PATH": "${input:browser-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs