Skip to content
VS Code

Frappe Inspector for VS Code

io.github.belius303/frappe-inspector

Static analysis tools for Frappe Framework and ERPNext projects via local stdio MCP.

client:VS Code transport:stdio runtime:npm

Install Frappe Inspector in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "frappe-inspector-license-key",
      "description": "FRAPPE_INSPECTOR_LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "frappe-inspector": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@frappe-inspector/mcp"
      ],
      "env": {
        "FRAPPE_INSPECTOR_LICENSE_KEY": "${input:frappe-inspector-license-key}"
      }
    }
  }
}

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

Frappe Inspector in other clients