sdk for VS Code
io.github.mnemopay/sdk
Memory + wallet for AI agents. Real payment rails, Agent FICO 300-850, Merkle audit, identity.
client:VS Code
transport:stdio
runtime:npm
Install sdk in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mnemopay-api-key",
"description": "MNEMOPAY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "mnemopay-persist-dir",
"description": "MNEMOPAY_PERSIST_DIR",
"password": true
}
],
"servers": {
"sdk": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mnemopay/sdk"
],
"env": {
"MNEMOPAY_API_KEY": "${input:mnemopay-api-key}",
"MNEMOPAY_PERSIST_DIR": "${input:mnemopay-persist-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs