← invoicehub.dev

INDIVIDUAL MCP TOOL

list_supported_formats

List the e-invoice formats InvoiceHub validates today and what is on the roadmap.

invoicehub.devnone authenticationAvailability not checked

LIVE ENDPOINT

https://api.invoicehub.dev/mcp

No auth detected

Connect to this endpoint to inspect the live schema for list_supported_formats and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests a financial action.

Parent server

invoicehub.dev

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.invoicehub]
url = "https://api.invoicehub.dev/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "invoicehub": {
      "type": "http",
      "url": "https://api.invoicehub.dev/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: invoicehub
Remote MCP URL: https://api.invoicehub.dev/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "invoicehub": {
      "url": "https://api.invoicehub.dev/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "invoicehub": {
      "type": "http",
      "url": "https://api.invoicehub.dev/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "invoicehub",
  "transport": "streamable-http",
  "url": "https://api.invoicehub.dev/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • validate_invoice — Validate an EU e-invoice XML string against the official EN 16931 Schematron.
  • generate_invoice — Generate an EN 16931-conformant UBL 2.
  • convert_invoice — Convert an e-invoice between formats via the shared EN 16931 canonical model: parse the source document, re-serialize as the target, and validate the result before returning it — never a document that has not been checked.