Skip to content
VS Code

Frappe Dev MCP Server for VS Code

io.github.sajmustafake/frappe-dev-mcp-server

MCP server for Frappe/ERPNext development with AI assistance for DocTypes, bench commands, and APIs

client:VS Code transport:stdio runtime:npm

Install Frappe Dev MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "frappe-path",
      "description": "FRAPPE_PATH",
      "password": true
    }
  ],
  "servers": {
    "frappe-dev-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "frappe-dev-mcp-server"
      ],
      "env": {
        "FRAPPE_PATH": "${input:frappe-path}"
      }
    }
  }
}

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

Frappe Dev MCP Server in other clients