Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the weclapp Cloud ERP in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
通过 MCP 将 weclapp 云 ERP 接入 Claude AI。使用自然语言管理各方、销售订单、发票和商品。预构建的 v2 适配器,逐步设置。
试试这样问
weclapp Cloud ERP 的示例提示
点击任意提示即可复制,然后粘贴到 Claude、ChatGPT、Cursor、Gemini、Copilot 或 OpenClaw 中,在该连接器上运行。
Claude 是 AI,可能会出错。请核对回答。
将 weclapp 连接到 Claude
weclapp 是一家领先的德国云 ERP,专为中小企业提供 CRM、销售、发票、采购和仓储服务。通过 AnythingMCP,你可以通过 MCP 将 weclapp 连接到 Claude AI,并使用自然语言管理你的 ERP 数据 — 无需编写自定义 REST 代码。
该适配器基于 weclapp REST API v2,移除了 /customer 并用统一的 /party 资源替代。如果你之前在使用 v1 固定工具(如 n8n 模板、自定义脚本)时遇到“weclapp 连接器无法工作”的问题,这就是原因 — 而这个适配器可以避免这个问题。
你可以向 Claude 询问的问题
- "列出本季度所有有未完成销售订单的客户"
- "显示订单 SO-2026-0099 的发票详情"
- "哪些商品库存不足?"
- "查找 Müller GmbH 的记录并显示他们的最后 5 张发票"
- "筛选
customerNumber-notnull=true且国家为 DE 的各方"
设置
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
- 在 weclapp 中生成 API 令牌:我的设置 → API → 生成新令牌
- 打开
http://localhost:3000/connectors/store并导入 weclapp 云 ERP - 提供
WECLAPP_TENANT(子域名,例如acme来自acme.weclapp.com)和WECLAPP_API_TOKEN - 将连接器分配给 MCP 服务器
连接 Claude
在 Claude Desktop 的 mcp.json 中:
{
"mcpServers": {
"weclapp": { "url": "http://localhost:4000/mcp" }
}
}
对于云端的 Claude(Anthropic API),请指向你的公共 AnythingMCP 实例。
可用工具
| 工具 | 端点 (v2) | 返回内容 |
|---|---|---|
weclapp_list_customers | GET /party | 各方,带可选的 filter(例如 customerNumber-notnull=true)、properties、sort |
weclapp_get_customer | GET /party/id/{partyId} | 完整的各方记录 |
weclapp_list_sales_orders | GET /salesOrder | 销售订单管道 |
weclapp_list_invoices | GET /salesInvoice | 发票 + 付款状态 |
weclapp_list_articles | GET /article | 产品目录 |
weclapp_get_article | GET /article/id/{articleId} | 完整的商品信息,包括仓库 |
提示:使用 properties 减少负载
当工具返回小而集中的负载时,Claude 的工作效果最佳。在 weclapp_list_customers 上传递 properties=id,customerNumber,company,email,100 行的响应从 ~500 KB 缩减到 ~10 KB — 更快、更便宜,并且更容易让 Claude 理解。
相关指南
- weclapp MCP 服务器概述
- 将 weclapp 连接到 ChatGPT
- 将 HR WORKS 连接到 Claude — 将 ERP 与人力资源配对
这份指南对你有帮助吗?