x402 ads mcp for VS Code
io.github.forgemeshlabs/x402-ads-mcp
x402 ad recommendations, intent analytics, and machine-commerce demand reports.
client:VS Code
transport:stdio
runtime:npm
Install x402 ads mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wallet-private-key",
"description": "WALLET_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "x402-ads-publisher-key",
"description": "X402_ADS_PUBLISHER_KEY",
"password": true
},
{
"type": "promptString",
"id": "x402-ads-base-url",
"description": "X402_ADS_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "base-rpc-url",
"description": "BASE_RPC_URL",
"password": true
}
],
"servers": {
"x402-ads-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@forgemeshlabs/x402-ads-mcp"
],
"env": {
"WALLET_PRIVATE_KEY": "${input:wallet-private-key}",
"X402_ADS_PUBLISHER_KEY": "${input:x402-ads-publisher-key}",
"X402_ADS_BASE_URL": "${input:x402-ads-base-url}",
"BASE_RPC_URL": "${input:base-rpc-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs