oblio-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., "@oblio-mcpcreate an invoice for client SC Test SRL for 1500 RON"
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.
Oblio.eu accounting MCP Server (Unofficial)
MCP Server for the Oblio API, enabling Claude and other MCP-compatible platforms to interact with Oblio.eu accounting software.
Create invoices, manage documents, collect payments, query nomenclatures, and submit e-Factura to Romania's SPV system -- all through natural language.
Prerequisites
Node.js >= 22.0.0
Docker (optional)
An active Oblio.eu account with API access
Setup
Get your Oblio API credentials:
Log in at oblio.eu
Go to Setari > Date Cont
Copy your email and API secret
Note your company CIF (e.g.
RO37311090)
Add to your Claude Desktop config or other AI tool (
claude_desktop_config.json):
Using npx (coming soon)
Once the package is published to npm, no installation will be required:
{
"mcpServers": {
"oblio": {
"command": "npx",
"args": ["-y", "oblio-mcp"],
"env": {
"OBLIO_API_EMAIL": "your-email@example.com",
"OBLIO_API_SECRET": "your-api-secret",
"CIF": "your-company-cif"
}
}
}
}Using a local clone (recommended)
git clone https://github.com/valentinludu/oblio-mcp.git
cd oblio-mcp
npm installThen add to your config:
{
"mcpServers": {
"oblio": {
"command": "node",
"args": ["/path/to/oblio-mcp/dist/index.js"],
"env": {
"OBLIO_API_EMAIL": "your-email@example.com",
"OBLIO_API_SECRET": "your-api-secret",
"CIF": "your-company-cif"
}
}
}
}Using Docker
docker build -t oblio-mcp .{
"mcpServers": {
"oblio": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"OBLIO_API_EMAIL",
"-e",
"OBLIO_API_SECRET",
"-e",
"CIF",
"oblio-mcp"
],
"env": {
"OBLIO_API_EMAIL": "your-email@example.com",
"OBLIO_API_SECRET": "your-api-secret",
"CIF": "your-company-cif"
}
}
}
}Environment Variables
Variable | Required | Description |
| Yes | Your Oblio account email |
| Yes | API secret from Oblio > Setari > Date Cont |
| No | Default company CIF. Can also be set at runtime via the |
Tools
Document Management
Tool | Description |
| Creates an invoice (factura), proforma, or delivery notice (aviz). Requires client details, at least one product, a series name, and issue date. Returns the created document's series, number, and link. |
| Retrieves a single document by type, series name, and number. Returns document details, link, and payment history. |
| Lists and filters documents with pagination. Supports filtering by series, date range, client, draft/cancelled/collected status. Returns up to 100 results per page. |
| Permanently deletes a document. Only the last document in a series can be deleted. Optionally removes the associated payment. |
| Cancels (annuls) a document, marking it as void. The document remains in the system. |
| Restores a previously cancelled document, making it active again. |
Payments
Tool | Description |
| Records a payment against an existing invoice. Supports payment types: Chitanta, Bon fiscal, Ordin de plata, Card, CEC, and others. Defaults to the full invoice amount if value is omitted. |
Nomenclatures (Reference Data)
Tool | Description |
| Fetches reference data from Oblio. Types: |
e-Factura (SPV)
Tool | Description |
| Submits an existing invoice to Romania's SPV system for e-Factura. Returns status code: 0=processing, 1=success, 2=errors, -1=not sent. |
| Downloads the e-Invoice archive (XML) from SPV for a previously submitted invoice. |
Configuration
Tool | Description |
| Sets the company CIF (tax ID) used for all subsequent API requests. |
| Returns the currently configured company CIF. |
Prompts
The server includes 28 prompt templates for common operations: creating documents, retrieving documents, cancelling/restoring/deleting documents, searching nomenclatures, collecting payments, listing invoices, and managing e-Factura submissions.
Troubleshooting
If you encounter issues:
Verify your Oblio account is active and has API access
Check that
OBLIO_API_EMAILandOBLIO_API_SECRETare correctly setEnsure your company CIF is set (via
CIFenv var or theset_ciftool)Confirm you have the necessary permissions for the operations you're performing
License
ISC
This server cannot be installed
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
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/valentinludu/oblio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server