cebelca-mcp
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., "@cebelca-mcpcreate an invoice for partner ABC-123"
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.
cebelca-mcp
An MCP server that wraps the cebelca.biz accounting API, exposing it as tools an MCP client (Claude, etc.) can call.
Development
This project uses devenv for its development
environment (Node.js, yarn). With direnv installed, cd into the directory and
the environment loads automatically; otherwise run devenv shell.
The cebelca.biz API key is read from the CEBELCA_BIZ_API_KEY environment
variable. It is set in .envrc (git-ignored) and loaded by direnv/devenv. The
server refuses to start if the variable is missing.
Optional: CEBELCA_BIZ_BASE_URL overrides the API base URL (defaults to
https://www.cebelca.biz/API).
Related MCP server: Cuéntica MCP
Commands
yarn install # install dependencies
yarn dev # run from source with tsx (no build step)
yarn build # compile TypeScript to dist/
yarn start # run the compiled server (dist/index.js)
yarn typecheck # type-check without emittingProject layout
src/
index.ts Entry point: builds the server, connects over stdio.
config.ts Loads config from the environment (API key, base URL).
client.ts HTTP client for the cebelca.biz resource/method API.
tools.ts MCP tool registration. Add new tools here.The cebelca.biz API
The API is a resource/method RPC over HTTP (docs: Workonomic-API-bash, making-an-invoice):
Every call is an HTTP
POSTwithx-www-form-urlencodedarguments.Resource and method go in the
_rand_mquery params (_m2stacks a second method,_fpicks the output format,_x=1is explore mode).Auth is HTTP Basic: the API token is the username, the password is the literal
x.Success responses look like
["ok", [{...}]]or[[{...}]]; errors like["validation", {...}]or[[{"err": "..."}]].CebelcaClientunwraps the success payload and throwsCebelcaErroron failures.PDFs come from a separate
.../API-pdfendpoint.
Tools
Tool | Purpose |
| Discover resources / methods / arguments (explore mode). |
| Generic escape hatch: call any resource/method directly. |
| Find-or-create a partner, return its id. |
| Create an issued-invoice head ( |
| Add a body line to an invoice. |
| Mark an invoice paid (by id or external id). |
| Issue an invoice — |
| Fetch ZOI/EOR/QR fiscal details. |
| Create a proforma (pre-invoice) head. |
| Add a body line to a proforma. |
| Convert a proforma into an invoice. |
| Fetch a document PDF as a base64 resource. |
Adding tools
Register new tools in src/tools.ts via server.registerTool(...), using
CebelcaClient.call(resource, method, args) and the run helper to turn
responses (and CebelcaErrors) into MCP tool results. When you need an
operation no dedicated tool covers, cebelca_explore + cebelca_call reach the
whole API.
Using with an MCP client
Build first (yarn build), then point your client at the compiled entry:
{
"mcpServers": {
"cebelca": {
"command": "node",
"args": ["/absolute/path/to/cebelca-mcp/dist/index.js"],
"env": { "CEBELCA_BIZ_API_KEY": "your-key-here" }
}
}
}This server cannot be installed
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
- AlicenseAqualityAmaintenanceModel Context Protocol (MCP) server for Spanish Electronic Invoicing. Provides tools to generate, validate, and submit invoices across VERI\*FACTU, Facturae/FACe, SII, TicketBAI, and Crea y Crece B2B.202Apache 2.0
- AlicenseBqualityCmaintenanceMCP server to interact with the Cuéntica accounting API, allowing users to manage invoices, expenses, income, clients, providers, and bank accounts via natural language.592MIT
- AlicenseAqualityCmaintenanceMCP server for creating and fiscalizing invoices via solo.com.hr API. Enables AI agents to generate invoices, retrieve invoice details, list invoices, and check next invoice number.4MIT
- Alicense-qualityDmaintenanceMCP server for the Billingo V3 Hungarian invoicing API. Manage invoices, partners, products, spendings, and bank accounts from any MCP client.8MIT
Related MCP Connectors
Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
MCP server exposing the Backtest360 engine API as tools for AI agents.
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/otobrglez/cebelca-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server