MCP ERPNext
Model Context Protocol (MCP) server for ERPNext - manage timesheets, leave applications, projects, and software releases via Claude, Gemini, or any MCP-compatible AI assistant.
README
MCP ERPNext
Model Context Protocol (MCP) server for ERPNext - manage timesheets, leave applications, projects, and software releases via Claude, Gemini, or any MCP-compatible AI assistant.
Features
- Timesheets: Create, edit, submit, and manage timesheets
- Leave Applications: Apply for leave, check balances, manage applications
- Projects: List projects and tasks
- Software Releases: Create release documents from GitLab merge requests with auto-detection
- Smart Validation: Automatic overlap detection for time entries
- Draft Editing: Full support for editing draft timesheets
Installation
Via npm (recommended)
npm install -g mcp-erpnext
From source
git clone https://github.com/sharat9703/mcp-erpnext-taiga-gitlab-redmine.git
cd mcp-erpnext
npm install
Configuration
1. Set up credentials
Create a .env file or set environment variables:
ERPNEXT_URL=https://your-erpnext-instance.com
ERPNEXT_USERNAME=your-email@example.com
ERPNEXT_PASSWORD=your-password
ERPNEXT_TOTP_SECRET=your-totp-secret # Optional, for 2FA
# For Software Releases (optional)
GITLAB_URL=https://gitlab.example.com
GITLAB_TOKEN=your-gitlab-personal-access-token
REDMINE_URL=https://redmine.example.com
REDMINE_API_KEY=your-redmine-api-key # For auto-fetching ticket titles
2. Configure your AI client
Claude Desktop (~/.claude/claude_desktop_config.json or %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"erpnext": {
"command": "npx",
"args": ["mcp-erpnext"],
"env": {
"ERPNEXT_URL": "https://your-erpnext-instance.com",
"ERPNEXT_USERNAME": "your-username",
"ERPNEXT_PASSWORD": "your-password"
}
}
}
}
Or from local installation:
{
"mcpServers": {
"erpnext": {
"command": "node",
"args": ["/path/to/mcp-erpnext/src/index.js"]
}
}
}
Gemini CLI (~/.gemini/settings.json):
{
"mcpServers": {
"erpnext": {
"command": "npx",
"args": ["mcp-erpnext"],
"env": {
"ERPNEXT_URL": "https://your-erpnext-instance.com",
"ERPNEXT_USERNAME": "your-username",
"ERPNEXT_PASSWORD": "your-password"
}
}
}
}
Usage Examples
Once configured, you can ask your AI assistant:
Create weekly timesheet for project PROJ-0460
Show my draft timesheets
Submit timesheet TS-2025-00123
Apply for leave from Dec 25 to Dec 27
Update time log 0 in timesheet TS-2025-00123 to 8 hours
Create software release for https://gitlab.example.com/project/-/merge_requests/123
using template https://erp.example.com/app/software-release/Product-v1.0.0
See USAGE.md for complete examples.
Available Tools
Timesheets
| Tool | Description |
|---|---|
erpnext_create_weekly_timesheet |
Create weekly timesheet (7h billable + 2h non-billable/day) |
erpnext_create_timesheet |
Create custom timesheet |
erpnext_create_custom_timesheet |
Create timesheet with specific entries |
erpnext_list_timesheets |
List timesheets with filters |
erpnext_get_timesheet |
Get timesheet details |
erpnext_get_my_draft_timesheets |
Get current user's draft timesheets |
erpnext_update_time_log |
Edit a time entry in draft timesheet |
erpnext_remove_time_log |
Remove a time entry from draft |
erpnext_update_timesheet_note |
Update timesheet note |
erpnext_delete_timesheet |
Delete draft timesheet |
erpnext_submit_timesheet |
Submit for approval |
erpnext_cancel_timesheet |
Cancel timesheet |
Leave Applications
| Tool | Description |
|---|---|
erpnext_apply_leave |
Apply for leave |
erpnext_list_leave_applications |
List leave applications |
erpnext_get_my_pending_leaves |
Get pending leave applications |
erpnext_get_leave_balance |
Check leave balance |
erpnext_submit_leave_application |
Submit for approval |
erpnext_cancel_leave_application |
Cancel leave application |
Core
| Tool | Description |
|---|---|
erpnext_login |
Authenticate with ERPNext |
erpnext_get_current_employee |
Get logged-in user's employee record |
erpnext_list_projects |
List projects |
erpnext_list_tasks |
List tasks for a project |
erpnext_list_activity_types |
List available activity types |
Software Releases
| Tool | Description |
|---|---|
erpnext_preview_software_release |
Preview release before creating - shows all fields and sources |
erpnext_create_software_release |
Create release from GitLab MR with auto-detection |
erpnext_get_mr_details |
Get MR details (Redmine IDs, patches, version) |
erpnext_get_redmine_issue |
Get Redmine ticket title |
erpnext_get_software_release |
Get existing release (use as template) |
erpnext_list_software_releases |
List recent releases |
erpnext_list_products |
List available products |
erpnext_list_customers_for_release |
List available customers |
Key Features
Time Entry Overlap Prevention
The server automatically validates that time entries don't overlap:
Error: Time entries have overlapping times:
Time entry 1 (Billable Work: 2025-12-02 10:00:00 - 17:00:00) overlaps with
entry 2 (Non Billable Work: 2025-12-02 15:00:00 - 17:00:00)
Draft Editing
Edit draft timesheets before submission:
- Update hours, times, project, activity type
- Remove individual time entries
- Update notes
- Delete entire draft
Software Release Auto-Detection
Create software releases from GitLab MRs with intelligent auto-detection:
- Template-based: Use existing release as template (auto-fills Product, Customer, Reviewer)
- Redmine IDs: Auto-extracted from MR description tables (
| 1. | #124323 | Title |) - Redmine Titles: Auto-fetched from Redmine API if configured
- Version: Auto-detected from branch name (e.g.,
release-v1.0.0.12) - Customer: Auto-detected from GitLab project path
- Patch URLs: Auto-extracted from MR notes/attachments
- Test Reports: Auto-extracted from MR notes/attachments
Project Structure
mcp-erpnext/
├── src/
│ ├── index.js # Entry point
│ ├── erpnext-client.js # ERPNext API client
│ ├── gitlab-client.js # GitLab API client (for software releases)
│ ├── redmine-client.js # Redmine API client (for ticket titles)
│ ├── resources.js # MCP resources
│ ├── definitions/ # Tool schemas
│ ├── handlers/ # Tool handlers
│ ├── tools/ # Business logic
│ └── formatters/ # Response formatters
├── .env.example
├── package.json
├── README.md
└── USAGE.md
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
MIT License - see LICENSE file for details.
Author
Sharat Yaragatti - GitHub
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。