Skip to content
VS Code

cotforce mcp for VS Code

io.github.islobodan/cotforce-mcp

Give brains to your small models. MCP server enforcing step-by-step Chain-of-Thought.

client:VS Code transport:stdio runtime:npm

Install cotforce mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mode",
      "description": "MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "api-base-url",
      "description": "API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "model",
      "description": "MODEL",
      "password": true
    }
  ],
  "servers": {
    "cotforce-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@slbdn/cotforce-mcp"
      ],
      "env": {
        "MODE": "${input:mode}",
        "API_BASE_URL": "${input:api-base-url}",
        "MODEL": "${input:model}"
      }
    }
  }
}

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

cotforce mcp in other clients