Cloaked Agent for VS Code
io.github.cloakedagent/cloaked
Trustless spending accounts for AI agents on Solana with on-chain enforced limits.
client:VS Code
transport:stdio
runtime:npm
Install Cloaked Agent in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cloaked-agent-key",
"description": "CLOAKED_AGENT_KEY",
"password": true
},
{
"type": "promptString",
"id": "cloaked-backend-url",
"description": "CLOAKED_BACKEND_URL",
"password": true
},
{
"type": "promptString",
"id": "solana-rpc-url",
"description": "SOLANA_RPC_URL",
"password": true
}
],
"servers": {
"cloaked": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cloakedagent/sdk"
],
"env": {
"CLOAKED_AGENT_KEY": "${input:cloaked-agent-key}",
"CLOAKED_BACKEND_URL": "${input:cloaked-backend-url}",
"SOLANA_RPC_URL": "${input:solana-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