Frappe MCP Server for VS Code
io.github.muthanii/frappe_mcp
Interact with Frappe/ERPNext sites — document CRUD, search, and whitelisted method calls
client:VS Code
transport:stdio
runtime:pypi
Install Frappe MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "frappe-url",
"description": "FRAPPE_URL",
"password": true
},
{
"type": "promptString",
"id": "frappe-api-key",
"description": "FRAPPE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "frappe-api-secret",
"description": "FRAPPE_API_SECRET",
"password": true
},
{
"type": "promptString",
"id": "frappe-verify-ssl",
"description": "FRAPPE_VERIFY_SSL",
"password": true
},
{
"type": "promptString",
"id": "frappe-timeout",
"description": "FRAPPE_TIMEOUT",
"password": true
}
],
"servers": {
"frappe_mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"frappe-mcp-server"
],
"env": {
"FRAPPE_URL": "${input:frappe-url}",
"FRAPPE_API_KEY": "${input:frappe-api-key}",
"FRAPPE_API_SECRET": "${input:frappe-api-secret}",
"FRAPPE_VERIFY_SSL": "${input:frappe-verify-ssl}",
"FRAPPE_TIMEOUT": "${input:frappe-timeout}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs