Package Intel for VS Code
io.github.adam121393/package-intel
npm, PyPI & crates.io health, vulns and dependency graphs. Runs locally, no API key.
client:VS Code
transport:stdio
runtime:npm
Install Package Intel in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "api-url",
"description": "API_URL",
"password": true
},
{
"type": "promptString",
"id": "network",
"description": "NETWORK",
"password": true
},
{
"type": "promptString",
"id": "x402-private-key",
"description": "X402_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "x402-tx-hash",
"description": "X402_TX_HASH",
"password": true
}
],
"servers": {
"package-intel": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"package-intel-mcp"
],
"env": {
"API_URL": "${input:api-url}",
"NETWORK": "${input:network}",
"X402_PRIVATE_KEY": "${input:x402-private-key}",
"X402_TX_HASH": "${input:x402-tx-hash}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs