Frappe MCP Server
About
Interact with Frappe/ERPNext sites — document CRUD, search, and whitelisted method calls
Use this server
Add it to your MCP client. The catalogue lists this config verbatim from its source — it does not run, download, or vouch for the server. Review the command before you run it.
Transportstdio (runs a local command)
Env vars
FRAPPE_URL FRAPPE_API_KEY FRAPPE_API_SECRET FRAPPE_VERIFY_SSL FRAPPE_TIMEOUTClaude Code
claude mcp add --env FRAPPE_URL= --env FRAPPE_API_KEY= --env FRAPPE_API_SECRET= --env FRAPPE_VERIFY_SSL= --env FRAPPE_TIMEOUT= frappe-mcp -- uvx frappe-mcp-server
Cursor
If the button doesn't open Cursor, use the JSON below — Cursor accepts the same mcpServers config.
VS Code
code --add-mcp '{"name":"frappe-mcp","command":"uvx","args":["frappe-mcp-server"],"env":{"FRAPPE_URL":"","FRAPPE_API_KEY":"","FRAPPE_API_SECRET":"","FRAPPE_VERIFY_SSL":"","FRAPPE_TIMEOUT":""}}'
JSON
{
"mcpServers": {
"frappe-mcp": {
"command": "uvx",
"args": [
"frappe-mcp-server"
],
"env": {
"FRAPPE_URL": "",
"FRAPPE_API_KEY": "",
"FRAPPE_API_SECRET": "",
"FRAPPE_VERIFY_SSL": "",
"FRAPPE_TIMEOUT": ""
}
}
}
}
Environment variables are listed by name only — fill in your own values. Entries never carry secrets.