Skip to content
VS Code

FINOPTIMA for VS Code

com.toutcreer/finoptima

AI trading agent: multi-pool AMM, 4 strategies, marketplace, copy trading. 35 tools.

client:VS Code transport:stdio runtime:npm

Install FINOPTIMA in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ecochain-api-url",
      "description": "ECOCHAIN_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ecochain-api-key",
      "description": "ECOCHAIN_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "finoptima": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "finoptima"
      ],
      "env": {
        "ECOCHAIN_API_URL": "${input:ecochain-api-url}",
        "ECOCHAIN_API_KEY": "${input:ecochain-api-key}"
      }
    }
  }
}

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

FINOPTIMA in other clients