Skip to content
VS Code

Curate-Ipsum for VS Code

io.github.egoughnour/curate-ipsum

Code synthesis through belief revision, mutation testing, and verification

client:VS Code transport:stdio runtime:pypi

Install Curate-Ipsum in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "curate-ipsum-graph-backend",
      "description": "CURATE_IPSUM_GRAPH_BACKEND",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mutation-tool-data-dir",
      "description": "MUTATION_TOOL_DATA_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mutation-tool-log-level",
      "description": "MUTATION_TOOL_LOG_LEVEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "chroma-host",
      "description": "CHROMA_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "embedding-model",
      "description": "EMBEDDING_MODEL",
      "password": true
    }
  ],
  "servers": {
    "curate-ipsum": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "curate-ipsum"
      ],
      "env": {
        "CURATE_IPSUM_GRAPH_BACKEND": "${input:curate-ipsum-graph-backend}",
        "MUTATION_TOOL_DATA_DIR": "${input:mutation-tool-data-dir}",
        "MUTATION_TOOL_LOG_LEVEL": "${input:mutation-tool-log-level}",
        "CHROMA_HOST": "${input:chroma-host}",
        "EMBEDDING_MODEL": "${input:embedding-model}"
      }
    }
  }
}

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

Curate-Ipsum in other clients