oblio-mcp-server
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-mcp-serverIssue invoice to client CIF RO12345678 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-mcp-server
A Model Context Protocol server for Oblio.eu — issue invoices, proformas and delivery notices, collect payments, submit e-Factura to Romania's SPV, and query your account's reference data through natural language, from Claude Desktop or any MCP client.
Unofficial community project. Not affiliated with or endorsed by Oblio Software; it builds on their public API and official Node SDK.
Features
Built on Oblio's official SDK (
@obliosoftware/oblioapi) — no hand-rolled HTTP layer for the core APIFull document lifecycle — create, fetch, list, cancel, restore and delete invoices, proformas and delivery notices (avize)
Payments — record collections (incasari) against invoices, with all Oblio payment methods
e-Factura / SPV — submit invoices to ANAF's SPV and poll their processing status
Nomenclatures — discover valid series names, VAT rates, saved clients, products, languages and management units before issuing documents
Multi-company — switch the active company CIF at runtime via
set_cifClient-side idempotency guard — pass an
idempotencyKeytocreate_documentand retries won't double-issue a documentZod-validated inputs — every tool input is schema-checked with descriptive field docs
MCP tool annotations — read-only / destructive / idempotent hints on every tool, so clients can gate confirmations appropriately
Related MCP server: oblio-mcp
Prerequisites
Node.js >= 20
An Oblio.eu account with API access
Getting API credentials
In Oblio, go to Setari > Date Cont. You need:
the account email (acts as the OAuth client id)
the API secret (acts as the OAuth client secret)
your company CIF (e.g.
RO12345678) — optional at startup; it can also be set at runtime with theset_ciftool
Installation
Claude Desktop / MCP clients — via npx
Add to your MCP client configuration (e.g. claude_desktop_config.json). Straight from GitHub (npx builds it on first run):
{
"mcpServers": {
"oblio": {
"command": "npx",
"args": ["-y", "github:horatiuvlad/oblio-mcp-server"],
"env": {
"OBLIO_API_EMAIL": "you@example.com",
"OBLIO_API_SECRET": "your-api-secret",
"OBLIO_CIF": "RO12345678"
}
}
}
}Once the package is published to npm, "args": ["-y", "oblio-mcp-server"] will work as well.
From a local build
git clone https://github.com/horatiuvlad/oblio-mcp-server.git
cd oblio-mcp-server
npm install
npm run build{
"mcpServers": {
"oblio": {
"command": "node",
"args": ["/path/to/oblio-mcp-server/dist/index.js"],
"env": {
"OBLIO_API_EMAIL": "you@example.com",
"OBLIO_API_SECRET": "your-api-secret",
"OBLIO_CIF": "RO12345678"
}
}
}
}Environment variables
Variable | Required | Description |
| yes | Oblio account email (Setari > Date Cont) |
| yes | Oblio API secret (Setari > Date Cont) |
| no | Default company CIF; can be changed at runtime with |
| no | Path where the OAuth access token is persisted so it survives restarts (defaults to in-memory only) |
Tools
Documents
Tool | Description |
| Issue an invoice, proforma or delivery notice (aviz); supports an optional |
| Fetch a single document by series name and number, with totals, status and a link |
| List documents with filters: series, number, client (cif/email/phone/code), issue-date range, draft/cancelled/collected flags, optional line items / payments / SPV status, sorting and pagination |
| Cancel (annul) a document; it stays in Oblio and can be restored later |
| Restore a previously cancelled document to its active state |
| Permanently delete a document (Oblio only allows deleting the last one in a series) |
Payments
Tool | Description |
| Record a payment (incasare) against an existing invoice; defaults to the full remaining amount when no value is given |
Nomenclatures
Tool | Description |
| Fetch reference data: companies, saved clients, products, VAT rates, document series, languages, or management units (gestiuni) |
e-Factura
Tool | Description |
| Submit an issued invoice to Romania's SPV (e-Factura / ANAF) |
| Fetch the SPV status and archive for a submitted invoice (0 = processing, 1 = success, 2 = errors, -1 = not sent) |
Company
Tool | Description |
| Set the active company CIF used for subsequent requests (switch between companies on one account) |
| Return the company CIF currently in effect |
Why another Oblio MCP?
It sits on Oblio's official SDK rather than reimplementing the API surface
It ships with a test suite and strict typechecking
create_documenthas a client-side idempotency guard, so agent retries don't silently issue duplicate invoicesFull e-Factura / SPV coverage — submit and track invoices with ANAF, not just issue them locally
Development
npm run build # compile to dist/
npm test # run the test suite
npm run typecheck # tsc --noEmitLicense
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/horatiuvlad/oblio-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server