obsd launchpad for VS Code
io.github.lordbasilaiassistant-sudo/obsd-launchpad
MCP server for AI agents to deploy tokens on Base. One command launch, earn OBSD forever.
client:VS Code
transport:stdio
runtime:npm
Install obsd launchpad in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "deployer-private-key",
"description": "DEPLOYER_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "rpc-url",
"description": "RPC_URL",
"password": true
}
],
"servers": {
"obsd-launchpad": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"obsd-launchpad-mcp"
],
"env": {
"DEPLOYER_PRIVATE_KEY": "${input:deployer-private-key}",
"RPC_URL": "${input: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