Skip to content
VS Code

tokenized stock for VS Code

io.github.evidai/tokenized-stock

Buy/sell tokenized US stocks (Dinari dShares) in USDC. Daily USD cap guard. Sandbox default.

client:VS Code transport:stdio runtime:npm

Install tokenized stock in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dinari-api-key",
      "description": "DINARI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dinari-api-secret",
      "description": "DINARI_API_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tokenized-stock-allow-live",
      "description": "TOKENIZED_STOCK_ALLOW_LIVE",
      "password": true
    }
  ],
  "servers": {
    "tokenized-stock": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "tokenized-stock-mcp"
      ],
      "env": {
        "DINARI_API_KEY": "${input:dinari-api-key}",
        "DINARI_API_SECRET": "${input:dinari-api-secret}",
        "TOKENIZED_STOCK_ALLOW_LIVE": "${input:tokenized-stock-allow-live}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

tokenized stock in other clients