Description

A server that implements the Anthropic Model Control Protocol server for accessing Frappe.

Installation

npx -y frappe-mcp-server
npm install frappe-mcp-server
git clone https://github.com/appliedrelevance/frappe_mcp_server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "frappe-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "frappe-mcp-server"
      ]
    }
  }
}