Metaplex Agent Registry for VS Code
io.github.nirholas/metaplex-agent
Deploy AI agents on-chain on Solana with an EIP-8004 identity. Deploy fee funds $THREE buybacks.
client:VS Code
transport:stdio
runtime:npm
Install Metaplex Agent Registry in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "solana-secret-key",
"description": "SOLANA_SECRET_KEY",
"password": true
},
{
"type": "promptString",
"id": "solana-rpc-url",
"description": "SOLANA_RPC_URL",
"password": true
},
{
"type": "promptString",
"id": "metaplex-agent-network",
"description": "METAPLEX_AGENT_NETWORK",
"password": true
},
{
"type": "promptString",
"id": "require-confirm",
"description": "REQUIRE_CONFIRM",
"password": true
},
{
"type": "promptString",
"id": "deploy-fee-sol",
"description": "DEPLOY_FEE_SOL",
"password": true
},
{
"type": "promptString",
"id": "deploy-fee-wallet",
"description": "DEPLOY_FEE_WALLET",
"password": true
},
{
"type": "promptString",
"id": "deploy-fee-enabled",
"description": "DEPLOY_FEE_ENABLED",
"password": true
},
{
"type": "promptString",
"id": "three-half-price-at",
"description": "THREE_HALF_PRICE_AT",
"password": true
},
{
"type": "promptString",
"id": "three-free-at",
"description": "THREE_FREE_AT",
"password": true
}
],
"servers": {
"metaplex-agent": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@three-ws/metaplex-agent-mcp"
],
"env": {
"SOLANA_SECRET_KEY": "${input:solana-secret-key}",
"SOLANA_RPC_URL": "${input:solana-rpc-url}",
"METAPLEX_AGENT_NETWORK": "${input:metaplex-agent-network}",
"REQUIRE_CONFIRM": "${input:require-confirm}",
"DEPLOY_FEE_SOL": "${input:deploy-fee-sol}",
"DEPLOY_FEE_WALLET": "${input:deploy-fee-wallet}",
"DEPLOY_FEE_ENABLED": "${input:deploy-fee-enabled}",
"THREE_HALF_PRICE_AT": "${input:three-half-price-at}",
"THREE_FREE_AT": "${input:three-free-at}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs