Workadu MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Workadu MCP Servershow my top 10 customers by revenue"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Workadu MCP Server
MCP (Model Context Protocol) server for Workadu โ enables AI assistants to interact with your Workadu data through natural language.
What is this?
This server exposes Workadu's API as MCP tools, allowing AI assistants like Claude, Cursor, and others to:
๐ฆ Manage Orders/Bookings โ list, create, update, cancel orders
๐ฅ Manage Customers โ search, create, update customer records
๐ Manage Services โ CRUD operations on services/products
๐งพ Manage Invoices โ create, publish, add lines, manage withholdings
๐ฐ Manage Payments โ list and create payments
๐ฆ Manage Assets โ CRUD operations on assets (DCL module)
๐ Manage Asset Movements โ create, close, cancel dispatch notes
Related MCP server: MCP Server for Odoo
Prerequisites
Node.js >= 18.0.0
A Workadu account with API access enabled
Your Workadu API key (from CompanyUser settings)
Installation
# Clone the repository
git clone https://github.com/workadu/mcp-server.git
cd mcp-server
# Install dependencies
npm install
# Build
npm run buildConfiguration
The server requires two environment variables:
Variable | Description | Example |
| Your Workadu instance URL |
|
| Your API key |
|
Copy .env.example to .env and fill in your values:
cp .env.example .envUsage
With Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"workadu": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"],
"env": {
"WORKADU_API_URL": "https://your-app.workadu.com",
"WORKADU_API_KEY": "your-api-key-here"
}
}
}
}With Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"workadu": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"],
"env": {
"WORKADU_API_URL": "https://your-app.workadu.com",
"WORKADU_API_KEY": "your-api-key-here"
}
}
}
}Testing with MCP Inspector
npm run inspectThis opens the MCP Inspector UI where you can test all tools interactively.
Direct execution
WORKADU_API_URL=https://your-app.workadu.com \
WORKADU_API_KEY=your-api-key \
npm startAvailable Tools
Orders/Bookings
Tool | Description |
| List orders/bookings with filters (date, status, customer) |
| Get order details by ID |
| Create a new booking/order |
| Update an existing order |
| Cancel/delete an order |
| Send order confirmation email |
Customers
Tool | Description |
| List customers (paginated, searchable) |
| Get customer details by ID |
| Create a new customer |
| Update an existing customer |
Services
Tool | Description |
| List services/products |
| Get service details by ID |
| Create a new service |
| Update an existing service |
| Delete a service |
Invoices
Tool | Description |
| List invoices with filters |
| Get invoice details by ID |
| Create a new invoice |
| Create invoice with line items |
| Add a line to existing invoice |
| Update an existing invoice |
| Publish/finalize a draft invoice |
| List invoice series |
| List withholdings for an invoice |
| Add withholding to an invoice |
Payments
Tool | Description |
| List payments |
| Create a new payment |
Assets (DCL)
Tool | Description |
| List assets |
| Get asset details by ID |
| Create a new asset |
| Update an existing asset |
| Delete an asset |
Asset Movements (DCL)
Tool | Description |
| List asset movements |
| Get movement details by ID |
| Create a new movement |
| Close/finalize a movement |
| Cancel a movement |
| Resend movement notification |
Development
# Watch mode (auto-recompile on changes)
npm run dev
# Type checking
npm run lint
# Build
npm run buildArchitecture
src/
โโโ index.ts # Entry point โ MCP Server init
โโโ config.ts # Environment config
โโโ client/
โ โโโ workadu-client.ts # HTTP client for Workadu Dingo API
โโโ tools/
โ โโโ index.ts # Tool registry
โ โโโ orders.ts # Order/booking tools
โ โโโ customers.ts # Customer tools
โ โโโ services.ts # Service tools
โ โโโ invoices.ts # Invoice tools
โ โโโ payments.ts # Payment tools
โ โโโ assets.ts # Asset tools
โ โโโ asset-movements.ts # Asset movement tools
โโโ types/
โโโ workadu.ts # TypeScript type definitionsAuthentication
The server authenticates with Workadu using the existing API key mechanism:
Sends
Authorization: Basic base64(api_key:)headerSends Dingo version header:
Accept: application/vnd.rengine.v2+jsonAll API calls are automatically scoped to the company associated with the API key
License
UNLICENSED โ Proprietary Workadu software
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables AI assistants to send messages, analyze conversations, manage chats and groups, schedule messages, and automate WhatsApp business operations through the Wassenger API using natural language commands.Last updated465MIT
- Alicense-qualityBmaintenanceEnables AI assistants to interact with Odoo ERP systems through natural language, allowing users to search, create, update, and manage business records like customers, products, and invoices across any Odoo instance.Last updated1Mozilla Public 2.0

dSIPRouter MCP Serverofficial
Alicense-qualityDmaintenanceEnables AI assistants to manage dSIPRouter operations such as endpoint groups, carrier groups, inbound mappings, and call data retrieval through natural language.Last updatedApache 2.0- Alicense-qualityBmaintenanceEnables AI assistants to manage business operations including invoicing, WooCommerce syncing, expense tracking, POS, inventory, and team management through natural language.Last updated532MIT
Related MCP Connectors
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Connect your AI assistants to Keboola and expose your data, transformations, SQL queries, ...
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/workadu/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server