Skip to content
VS Code

casemargin mcp server for VS Code

com.casemargin/casemargin-mcp-server

Turn a support ticket into a structured case brief, or score its L2 escalation readiness.

client:VS Code transport:stdio runtime:npm

Install casemargin mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "casemargin-api-key",
      "description": "CASEMARGIN_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "casemargin-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "casemargin-mcp-server"
      ],
      "env": {
        "CASEMARGIN_API_KEY": "${input:casemargin-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

casemargin mcp server in other clients