Skip to content
VS Code

DeepThonk for VS Code

io.github.linxule/deepthonk

Provider-neutral OpenDeepThink reasoning server: generate, judge, rank, mutate.

client:VS Code transport:stdio runtime:npm

Install DeepThonk in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "deepseek-api-key",
      "description": "DEEPSEEK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openrouter-api-key",
      "description": "OPENROUTER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deepthonk-api-key",
      "description": "DEEPTHONK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deepthonk-config",
      "description": "DEEPTHONK_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deepthonk-profiles-dir",
      "description": "DEEPTHONK_PROFILES_DIR",
      "password": true
    }
  ],
  "servers": {
    "deepthonk": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "deepthonk"
      ],
      "env": {
        "DEEPSEEK_API_KEY": "${input:deepseek-api-key}",
        "OPENROUTER_API_KEY": "${input:openrouter-api-key}",
        "DEEPTHONK_API_KEY": "${input:deepthonk-api-key}",
        "DEEPTHONK_CONFIG": "${input:deepthonk-config}",
        "DEEPTHONK_PROFILES_DIR": "${input:deepthonk-profiles-dir}"
      }
    }
  }
}

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

DeepThonk in other clients