Skip to content
VS Code

mcp curiosity engine for VS Code

io.github.onetrueclaude-creator/mcp-curiosity-engine

Surface the notes you forgot you wrote — DMN replay for markdown vaults.

client:VS Code transport:stdio runtime:pypi

Install mcp curiosity engine in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "curiosity-engine-license",
      "description": "CURIOSITY_ENGINE_LICENSE",
      "password": true
    }
  ],
  "servers": {
    "mcp-curiosity-engine": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-curiosity-engine"
      ],
      "env": {
        "CURIOSITY_ENGINE_LICENSE": "${input:curiosity-engine-license}"
      }
    }
  }
}

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

mcp curiosity engine in other clients