
ERPNext MCP Server
Enables comprehensive interaction with ERPNext systems through natural language, providing secure access to any document type (customers, items, invoices, etc.) with enterprise-grade permission controls and audit logging.
README
ERPNext MCP Server
A comprehensive Model Context Protocol (MCP) server for ERPNext that provides generic, doctype-agnostic access to any ERPNext document type with robust permission controls, audit logging, and enterprise-grade security.
🏗️ Architecture Overview
graph TB
A[Claude/LLM Client] --> B[MCP Protocol]
B --> C[ERPNext MCP Server]
C --> D[Permission Manager]
C --> E[ERPNext Client]
C --> F[Cache Manager]
C --> G[Rate Limiter]
E --> H[ERPNext API]
D --> I[Audit Logger]
subgraph "Permission System"
D --> J[Doctype Permissions]
D --> K[Field-Level Control]
D --> L[Operation Validation]
D --> M[Condition Checking]
end
subgraph "ERPNext Integration"
E --> N[Generic CRUD]
E --> O[Search & Filter]
E --> P[Schema Discovery]
end
Core Components
- 🔧 Generic Client: Works with any ERPNext doctype (Customer, Item, Sales Order, etc.)
- 🛡️ Permission System: Multi-layer access control with field-level restrictions
- 📊 Audit System: Comprehensive logging of all operations
- ⚡ Performance: Built-in caching and rate limiting
- 🔍 Discovery: Dynamic tool generation based on configured doctypes
🚀 Quick Start
1. Installation
# Clone/create project
mkdir erpnext_mcp_server && cd erpnext_mcp_server
# Create virtual environment
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
# Install dependencies
pip install mcp httpx pydantic python-dotenv typing-extensions
2. Configuration
Create config/config.json
:
{
"erpnext": {
"url": "https://your-erpnext-instance.com",
"api_key": "your_api_key",
"api_secret": "your_api_secret"
},
"permissions": {
"doctypes": {
"Customer": {
"read": true,
"create": true,
"update": true,
"delete": false,
"allowed_fields": ["customer_name", "email_id", "mobile_no"],
"conditions": {
"create": {"customer_type": ["Company", "Individual"]}
}
}
}
}
}
3. Run Server
python -m src.server
🔐 Permission Model
Multi-Layer Security Architecture
The permission system operates on four security layers:
1. Operation-Level Permissions
{
"Customer": {
"read": true, // Allow reading customers
"create": true, // Allow creating customers
"update": true, // Allow updating customers
"delete": false // Deny deleting customers
}
}
2. Field-Level Access Control
{
"Customer": {
"allowed_fields": [
"customer_name", "email_id", "mobile_no", "website"
],
"restricted_fields": [
"creation", "modified", "owner", "credit_limit"
]
}
}
3. Conditional Validation
{
"Customer": {
"conditions": {
"create": {
"customer_type": ["Company", "Individual"],
"territory": ["Egypt", "UAE", "Saudi Arabia"]
},
"update": {
"status": {"not_in": ["Disabled", "Blocked"]}
}
}
}
}
4. Audit & Monitoring
{
"audit": {
"enabled": true,
"log_file": "logs/audit.log",
"retention_days": 30
}
}
Permission Examples
Restrictive Configuration (Read-only analyst)
{
"permissions": {
"doctypes": {
"Customer": {
"read": true,
"create": false,
"update": false,
"delete": false,
"allowed_fields": ["name", "customer_name", "territory", "customer_group"]
},
"Sales Invoice": {
"read": true,
"create": false,
"update": false,
"delete": false,
"allowed_fields": ["name", "customer", "total", "status", "posting_date"]
}
}
}
}
Operational Configuration (Sales user)
{
"permissions": {
"doctypes": {
"Customer": {
"read": true,
"create": true,
"update": true,
"delete": false,
"allowed_fields": [
"customer_name", "customer_type", "email_id", "mobile_no",
"customer_group", "territory", "website"
],
"conditions": {
"create": {"customer_type": ["Company", "Individual"]},
"update": {"status": {"not_in": ["Disabled"]}}
}
}
}
}
}
🛠️ Available Tools & Usage
System Tools
test_connection
Test ERPNext server connectivity
Test the ERPNext connection
list_doctypes
Show all configured doctypes and permissions
List all available document types and their permissions
get_doctype_permissions
Get detailed permissions for specific doctype
Show me the permissions for Customer doctype
Generic Document Operations
get_generic_document
Get any document by doctype and name
Get the Customer document named "ABC Company"
list_generic_documents
List documents for any doctype with filters
List all Items where item_group is "Raw Materials" and limit to 10 results
create_generic_document
Create document for any doctype
Create a new Customer with name "XYZ Corp", type "Company", and email "contact@xyz.com"
Doctype-Specific Tools
For each configured doctype, the server automatically generates:
list_{doctype}_documents
- List documentsget_{doctype}_document
- Get specific documentsearch_{doctype}_documents
- Search documentscreate_{doctype}_document
- Create new documentupdate_{doctype}_document
- Update documentdelete_{doctype}_document
- Delete document (if permitted)
Example Usage with Claude
Data Analysis
Show me the top 10 customers by territory and their contact information
→ Uses list_customer_documents
with filters
Data Entry
Create a new customer named "Tech Solutions Ltd" as a Company type in Egypt territory with email info@techsolutions.com
→ Uses create_customer_document
with validation
Information Retrieval
Get details for sales invoice INV-2024-001 including customer and payment status
→ Uses get_sales_invoice_document
Search & Discovery
Find all items containing "laptop" in the name and show their prices
→ Uses search_item_documents
⚙️ Advanced Configuration
Rate Limiting
{
"rate_limiting": {
"enabled": true,
"requests_per_minute": 60,
"requests_per_hour": 1000
}
}
Caching
{
"cache": {
"enabled": true,
"ttl": 300,
"max_size": 1000
}
}
Environment Variables
# Alternative to config file
export ERPNEXT_URL="https://your-instance.com"
export ERPNEXT_API_KEY="your_key"
export ERPNEXT_API_SECRET="your_secret"
export MCP_AUDIT_ENABLED="true"
export MCP_LOG_LEVEL="INFO"
🔒 Security Considerations
Authentication
- Uses ERPNext API Key/Secret authentication
- No passwords stored in configuration
- Supports ERPNext user-level permissions
Data Protection
- Field-level access control prevents sensitive data exposure
- Audit logging tracks all access attempts
- Rate limiting prevents abuse
- Input validation prevents injection attacks
Network Security
- HTTPS-only connections to ERPNext
- Configurable request timeouts
- Connection pooling with limits
Audit Trail
All operations are logged with:
- Timestamp and user context
- Operation type and target doctype
- Success/failure status and reasons
- Data accessed/modified (field names only)
- IP address and session information
Example audit log:
2024-01-15 10:30:45 - INFO - Operation: READ | DocType: Customer | Result: ALLOWED | Document: ABC Corp | Fields: ['customer_name', 'email_id', 'territory']
2024-01-15 10:31:12 - WARNING - Operation: DELETE | DocType: Customer | Result: DENIED | Reason: Delete operation not allowed for doctype 'Customer'
🧪 Testing & Validation
Test Connection
python test_client.py
Validate Permissions
from src.permissions import PermissionManager
config = {...} # Your config
pm = PermissionManager(config)
# Test permissions
can_read = pm.can_read("Customer")
can_create = pm.can_create("Sales Order")
allowed_fields = pm.get_allowed_fields("Item")
# Validate operation
allowed, reason = pm.validate_operation("create", "Customer", {
"customer_name": "Test Corp",
"customer_type": "Company"
})
Performance Testing
import asyncio
from src.erpnext_client import ERPNextClient
# Test rate limiting and caching
client = ERPNextClient(url, key, secret, config)
# This should hit cache after first request
for i in range(10):
result = await client.get_doctype_list("Customer")
print(f"Request {i+1}: {len(result['data'])} customers")
🏃♂️ Deployment
Production Configuration
{
"erpnext": {
"url": "https://your-production-instance.com",
"timeout": 60
},
"rate_limiting": {
"enabled": true,
"requests_per_minute": 30,
"requests_per_hour": 500
},
"audit": {
"enabled": true,
"log_level": "INFO",
"retention_days": 90
},
"cache": {
"enabled": true,
"ttl": 600
}
}
Claude Desktop Integration
Add to claude_desktop_config.json
:
{
"mcpServers": {
"erpnext": {
"command": "python",
"args": ["-m", "src.server"],
"cwd": "/path/to/erpnext_mcp_server",
"env": {
"MCP_LOG_LEVEL": "INFO"
}
}
}
}
Docker Deployment
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8080
CMD ["python", "-m", "src.server"]
🚨 Failure Modes & Recovery
Connection Failures
- Automatic retry with exponential backoff
- Graceful degradation when ERPNext is unavailable
- Connection pooling prevents resource exhaustion
Permission Violations
- All unauthorized operations are blocked and logged
- Clear error messages explain permission requirements
- No partial operations - atomic success/failure
Rate Limiting
推荐服务器

Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。