MCP Holded
This MCP server connects AI assistants to the Holded business management platform, enabling full control over invoicing, contacts, products, accounting, and more through 76+ tools.
📄 Documents – List, create, update, and delete documents (invoices, estimates, credit notes, purchase orders, etc.); pay, email, and PDF documents; ship items; attach files; update tracking info and pipeline stages.
👥 Contacts – List, create, update, and delete contacts (clients, suppliers, leads, etc.); manage contact persons and attachments.
📦 Products – List, create, update, and delete products; manage product images; update stock quantities per warehouse.
🏦 Treasuries – List, create, and retrieve treasury accounts.
💸 Expenses Accounts – List, create, get, update, and delete expense account categories.
🔢 Numbering Series – Get, create, update, and delete document numbering series per document type.
🛒 Sales Channels – List, create, get, update, and delete sales channels.
🏭 Warehouses – List, create, get, update, and delete warehouses; view stock levels per warehouse.
💳 Payments – List, create, get, update, and delete payment methods.
🧾 Taxes – Retrieve all available taxes.
👫 Contact Groups – List, create, get, update, and delete contact groups.
📬 Remittances – List all remittances or retrieve a specific one by ID.
🛠️ Services – List, create, get, update, and delete services.
⏱️ Time Tracking (read-only) – List time-tracking entries across all projects or for a specific project.
📊 Accounting (read-only) – Retrieve the chart of accounts and the daily ledger.
🏧 Banking (experimental) – Reconcile bank-feed transactions against accounting entries (requires HOLDED_ENABLE_EXPERIMENTAL_BANKING=true).
Click 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., "@MCP HoldedList my unpaid invoices"
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.
MCP Holded
A Model Context Protocol (MCP) server for the Holded API. This server lets AI assistants like Claude interact with Holded's invoicing, accounting, contacts, products, treasury, HR, time tracking and more.
Built and maintained by Nubiia — automatización e integraciones con IA para negocios (MCP, Holded, Pipedrive y más). ¿Quieres algo así para tu empresa? Escríbenos en nubiia.es.
Features
This MCP server provides access to the Holded API v2 across all supported modules:
Documents (16 tools): Create, list, update, delete invoices, estimates, credit notes, etc. Also pay, send, get PDF, ship items, and more.
Contacts (7 tools): Manage clients and suppliers with attachments.
Products (9 tools): Full product management including images and stock.
Treasuries (3 tools): Manage legacy treasury accounts.
Treasury v2 (15 tools): Bank accounts, bank movements, cash movements, invoicing forecasts and reconciliation.
Expenses Accounts (5 tools): Handle expense account categories.
Numbering Series (4 tools): Configure document numbering.
Sales Channels (5 tools): Manage sales channels.
Warehouses (6 tools): Warehouse management.
Payments (5 tools): Payment method configuration.
Taxes (1 tool): Get available taxes.
Contact Groups (5 tools): Organize contacts into groups.
Remittances (2 tools): Access remittance data.
Services (5 tools): Manage services.
Time Tracking (3 tools): List time-tracking entries and project times (read and write).
Accounting (2 tools, read-only): Get the chart of accounts and the daily ledger.
Ledger (4 tools): List and create accounting/ledger entries.
Team/HR (22 tools): Employee management, payroll records, employee time entries and clock in/out.
Total: 119 tools — all registered unconditionally once a valid v2 key is configured.
Related MCP server: Billingo MCP Server
Installation
Prerequisites
Node.js 22.14 or higher
A Holded account with API access
A Holded API v2 key (
pat_…orsk_live_…) — generate it in Holded → Settings → API
Install from npm
npm install -g @nubiia/mcp-holdedInstall from source
git clone https://github.com/nubiia-dev/mcp-holded.git
cd mcp-holded
npm install
npm run buildConfiguration
Environment Variables
All tools call the Holded API v2 (Bearer auth, cursor pagination). You need a single v2 key:
# Recommended — primary key name
export HOLDED_API_KEY=pat_your_v2_key_here
# Alternative — accepted as an alias; wins over HOLDED_API_KEY if both are set
export HOLDED_API_KEY_V2=sk_live_your_v2_key_hereGenerate the key in Holded → Settings → API. The key must start with pat_ or sk_live_. A 403 response means the key is missing a required scope.
For multi-tenant setups use the same logic per tenant:
export TENANT_1_NAME=company-a
export TENANT_1_API_KEY=pat_key_for_company_a
export TENANT_2_NAME=company-b
export TENANT_2_API_KEY=sk_live_key_for_company_bTENANT_N_API_KEY_V2 is accepted as an alias for TENANT_N_API_KEY (wins if both are set).
Claude Desktop Configuration
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"holded": {
"command": "npx",
"args": ["-y", "@nubiia/mcp-holded"],
"env": {
"HOLDED_API_KEY": "pat_your_v2_key_here"
}
}
}
}Or if installed from source:
{
"mcpServers": {
"holded": {
"command": "node",
"args": ["/path/to/mcp-holded/dist/index.js"],
"env": {
"HOLDED_API_KEY": "pat_your_v2_key_here"
}
}
}
}Migrating from 1.x
API key
The server now calls the Holded API v2 exclusively. Your 1.x API key (a plain hex string like abc123…) no longer works. Generate a v2 key in Holded → Settings → API; the key will start with pat_ or sk_live_.
Set it as HOLDED_API_KEY (or the alias HOLDED_API_KEY_V2). The separate HOLDED_API_KEY_V2 variable used in 1.x to opt-in to HR/Ledger/Treasury tools is no longer needed — all 119 tools are always registered.
Pagination
List tools changed from page-based to cursor-based pagination:
1.x argument | 2.x argument | Notes |
| (removed) | Server no longer accepts offset pages |
|
| Server-paginated; use limit to control page size |
(none) |
| Pass the |
Responses now follow this envelope:
{
"items": [...],
"nextCursor": "opaque-string-or-null",
"hasMore": true
}Iterate by passing nextCursor as cursor until hasMore is false.
Response format
Field names are
snake_casethroughout (e.g.contact_id,created_at).Monetary amounts are strings with a decimal comma (e.g.
"1.234,56") — parse with your locale-aware number parser before doing arithmetic.
Removed or changed operations
Operation | 1.x behaviour | 2.x behaviour |
| Supported | Removed — create only via |
| All document types | Only |
Ship operations | All document types | Only |
Experimental banking ( | Opt-in via env flag | Removed — use |
| Unix timestamps ( | ISO 8601 strings ( |
| Paginated | Returns all taxes in one call (no pagination args) |
| Optional warehouse |
|
List tools field projections | Reduced default set of fields | Full v2 payload returned; use |
Contact attachments
Attachments are now fetched by filename instead of attachment ID. Use get_contact_attachment with the filename field returned by list_contact_attachments.
Usage Examples
Once configured, you can ask Claude to:
Documents
"List all my invoices from Holded"
"Create an invoice for client X with 2 items"
"Send invoice #123 to the client by email"
"Get the PDF of invoice #456"
"Mark invoice #789 as paid"
Contacts
"List all my clients in Holded"
"Create a new client named Acme Corp"
"Update the email for contact #123"
Products
"Show me all products"
"Create a new product called Widget with price 50 EUR"
"Update stock for product #123 adding 10 units in warehouse W1"
HR & Payroll
"List all employees"
"Clock in employee #456"
"Get the salary record for employee #789 for June 2025"
Reports
"Get all my taxes"
"List all treasury bank accounts"
"Show me the daily ledger for January 2025"
"Get the chart of accounts"
Document Types
The API supports these document types:
Type | Description |
| Sales invoices |
| Sales receipts |
| Credit notes (refunds) |
| Receipt notes |
| Estimates/Quotes |
| Sales orders |
| Packing lists |
| Proforma invoices |
| Purchases |
| Purchase refunds (create only in v2) |
| Purchase orders |
API Reference
Base URL
https://api.holded.com/api/The server routes each tool to the appropriate v2 sub-path (e.g. /invoicing/v2/, /team/v2/, /accounting/v2/).
Authentication
All requests use Bearer authentication with your v2 key:
Authorization: Bearer pat_your_v2_key_herePagination
List endpoints use cursor-based pagination via limit and cursor arguments (see Migrating from 1.x).
Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run devWrite Safety
Create/update/delete tools modify real data in Holded. The server applies per-tool rate limits (stricter for destructive operations) to prevent accidental bulk mutations. Destructive operations are capped at 10 requests/minute by default; update operations at 30 requests/minute.
Privacy Policy
Data Collection: This MCP server requires your Holded API key to function. The API key is read from your local environment variable (HOLDED_API_KEY) and is never stored by this server. All API requests and responses are passed through in real-time to facilitate communication between your AI assistant and the Holded API.
Data Usage & Sharing: Your API key and all data processed through this server are used exclusively to interact with the Holded API on your behalf. The server acts as a pass-through proxy - it does not store, log, or retain any data. Your Holded API key and data are transmitted only to Holded's official API endpoints (api.holded.com). No data is shared with any third parties beyond Holded.
Your Security: We recommend following security best practices: store your API key in environment variables (never commit it to version control), regularly update to the latest version, and review the permissions granted to this MCP server in your AI assistant. For more information, see our full Privacy Policy.
Support
For questions, issues, or feature requests:
GitHub Issues: Report an issue
Email: hola@nubiia.es
Documentation: Holded API Docs
About Nubiia
This MCP server is built and maintained by Nubiia.
Nubiia ayuda a empresas a automatizar procesos e integrar sus herramientas con IA: servidores MCP a medida, integraciones con Holded, Pipedrive y otros ERPs/CRMs, y agentes que conectan tus datos de negocio con asistentes como Claude. Este @nubiia/mcp-holded es un ejemplo open source de lo que hacemos.
👉 ¿Quieres una integración o automatización con IA para tu negocio? nubiia.es · ✉️ hola@nubiia.es
License
MIT - See LICENSE file for details.
Author
Built by Nubiia — nubiia.es · hola@nubiia.es
Maintainer: Samuel Fraga — GitHub · LinkedIn
Links
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/nubiia-dev/mcp-holded'
If you have feedback or need assistance with the MCP directory API, please join our Discord server