# Send Frappe MCP to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "erpnext-frappe",
    "name": "Frappe MCP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Ravana-indus/erpnext-frappe",
    "canonicalUrl": "https://clawhub.ai/Ravana-indus/erpnext-frappe",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/erpnext-frappe",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=erpnext-frappe",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "definitions/stock_entry.json",
      "definitions/create_supplier.json",
      "definitions/create_project.json",
      "definitions/process_payment.json",
      "definitions/create_lead.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/erpnext-frappe"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/erpnext-frappe",
    "downloadUrl": "https://openagent3.xyz/downloads/erpnext-frappe",
    "agentUrl": "https://openagent3.xyz/skills/erpnext-frappe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/erpnext-frappe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/erpnext-frappe/agent.md"
  }
}
```
## Documentation

### Business Claw Skills

High-level business workflows that combine multiple MCP tools into reusable, executable skills for ERPNext.

### Overview

Skills are pre-defined workflows stored as JSON files in definitions/. Each skill defines:

Triggers: Natural language patterns that activate the skill
Tools: MCP tools to execute in sequence
Input Schema: Required and optional parameters
Workflow Steps: Ordered execution plan with variable substitution
Guardrails: Validation rules for safe execution
Output Template: Formatted response message

### CRM Skills

SkillDescriptionCategorycreate_customerCreate a new customer with contact and addresscrmcreate_leadRegister a new leadcrmcreate_supplierAdd a new suppliercrm

### Sales Skills

SkillDescriptionCategorycreate_sales_orderCreate a sales ordersalescreate_quotationCreate a quotationsalescreate_invoiceGenerate sales invoicesalescomplete_sales_workflowFull Quotation → SO → Invoice → Paymentsales

### Purchase Skills

SkillDescriptionCategorycreate_purchase_orderCreate a purchase orderpurchase

### Inventory Skills

SkillDescriptionCategorycreate_itemCreate new item in inventoryinventorystock_entryRecord stock movementsinventory

### Project Skills

SkillDescriptionCategorycreate_projectCreate a new projectproject

### Financial Skills

SkillDescriptionCategoryprocess_paymentRecord payment entrypayments

### Utility Skills

SkillDescriptionCategorysearch_recordsSearch across DocTypesutilitybulk_operationBulk create/update/deleteutilitygeneric_taskFlexible multi-step workflowutility

### Loading Skills

from bc_skills import get_available_skills, load_skill

# List all available skills
skills = get_available_skills()
print(skills)  # ['create_customer', 'create_sales_order', ...]

# Load a specific skill
skill = load_skill("create_customer")

### Executing Skills

from bc_skills.loader import execute_skill

result = execute_skill(
    name="create_customer",
    context={
        "customer_name": "ACME Corp",
        "customer_type": "Company",
        "customer_group": "Commercial",
        "email": "contact@acme.com"
    },
    user="Administrator"
)

print(result)

### Trigger Examples

Skills respond to natural language triggers:

Trigger PhraseSkill"create customer"create_customer"add customer"create_customer"new customer"create_customer"complete sales workflow"complete_sales_workflow"full sales process"complete_sales_workflow"process order to payment"complete_sales_workflow"create sales order"create_sales_order"generate invoice"create_invoice

### Skill Definition Schema

{
  "name": "skill_name",
  "version": "1.0.0",
  "description": "What the skill does",
  "author": "Business Claw Team",
  "category": "crm|sales|purchase|inventory|project|payments|utility",
  
  "triggers": [
    "trigger phrase 1",
    "trigger phrase 2"
  ],
  
  "tools": [
    {
      "name": "tool_name",
      "description": "What it does",
      "required": true
    }
  ],
  
  "input_schema": {
    "type": "object",
    "properties": {
      "param_name": {
        "type": "string",
        "description": "Parameter description",
        "enum": ["option1", "option2"]
      }
    },
    "required": ["required_param"]
  },
  
  "workflow": {
    "steps": [
      {
        "step": "step_name",
        "tool": "tool_to_call",
        "arguments": {
          "doctype": "DocType",
          "data": {
            "field": "${variable}"
          }
        }
      }
    ]
  },
  
  "guardrails": {
    "rule_name": true
  },
  
  "output_template": "Formatted output {{variable}}"
}

### Variable Substitution

Workflow steps support ${variable} substitution from execution context:

{
  "step": "create_order",
  "tool": "create_document",
  "arguments": {
    "doctype": "Sales Order",
    "data": {
      "customer": "${customer_id}",
      "items": "${items}"
    }
  }
}

### Creating Custom Skills

Create a JSON file in definitions/
Define triggers, tools, input schema, and workflow
Use the SkillLoader to load and execute

Example custom skill structure:

{
  "name": "my_custom_skill",
  "version": "1.0.0",
  "description": "My custom workflow",
  "category": "utility",
  "triggers": ["my trigger"],
  "tools": [
    {"name": "get_doctype_meta", "required": true},
    {"name": "create_document", "required": true}
  ],
  "input_schema": {
    "type": "object",
    "properties": {
      "param1": {"type": "string"}
    },
    "required": ["param1"]
  },
  "workflow": {
    "steps": [
      {
        "step": "step1",
        "tool": "get_doctype_meta",
        "arguments": {"doctype": "Item"}
      }
    ]
  },
  "output_template": "Result: {{result}}"
}

### Architecture

loader.py - SkillLoader class manages skill loading and execution
definitions/ - JSON files containing skill definitions
Skills use the ToolRouter to execute MCP tools in sequence
Guardrails provide validation before skill execution

### Requirements

Frappe/ERPNext environment
bc_mcp module for tool routing
JSON or YAML skill definitions

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Ravana-indus
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/erpnext-frappe)
- [Send to Agent page](https://openagent3.xyz/skills/erpnext-frappe/agent)
- [JSON manifest](https://openagent3.xyz/skills/erpnext-frappe/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/erpnext-frappe/agent.md)
- [Download page](https://openagent3.xyz/downloads/erpnext-frappe)