Skip to content
VS Code

Splitifi Intelligence MCP for VS Code

io.github.mysplitifi/splitifi-mcp

Outcome predictions and judge profiles from 2,741 ML models trained on 30.3M court records.

client:VS Code transport:stdio runtime:npm

Install Splitifi Intelligence MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "splitifi-api-key",
      "description": "SPLITIFI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "splitifi-api-url",
      "description": "SPLITIFI_API_URL",
      "password": true
    }
  ],
  "servers": {
    "splitifi-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "splitifi-mcp"
      ],
      "env": {
        "SPLITIFI_API_KEY": "${input:splitifi-api-key}",
        "SPLITIFI_API_URL": "${input:splitifi-api-url}"
      }
    }
  }
}

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

Splitifi Intelligence MCP in other clients