Sign In

@codespar/mcp-omie

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codespar/mcp-omie

MCP server for Omie — ERP, customers, products, orders, invoices, financials

npmnpm
Version
0.1.0
Version published
Weekly downloads
52
-17.46%
Maintainers
1
Weekly downloads
 
Created
Source

@codespar/mcp-omie

MCP server for Omie — ERP with customers, products, orders, invoices, and financials

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "omie": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-omie"],
      "env": {
        "OMIE_APP_KEY": "your-app-key",
        "OMIE_APP_SECRET": "your-app-secret"
      }
    }
  }
}

Claude Code

claude mcp add omie -- npx @codespar/mcp-omie

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "omie": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-omie"],
      "env": {
        "OMIE_APP_KEY": "your-app-key",
        "OMIE_APP_SECRET": "your-app-secret"
      }
    }
  }
}

Tools

ToolDescription
list_customersList customers from Omie ERP
create_customerCreate a customer in Omie ERP
list_productsList products from Omie ERP
create_productCreate a product in Omie ERP
create_orderCreate a sales order in Omie ERP
list_ordersList sales orders from Omie ERP
list_invoicesList invoices (NF) from Omie ERP
get_financialList accounts receivable from Omie ERP
create_invoiceConsult a specific NF by ID in Omie ERP
get_company_infoList companies registered in Omie ERP

Authentication

Omie uses JSON-RPC style requests with app_key and app_secret in the request body.

Sandbox / Testing

Omie provides a sandbox via app registration. Create an app to get test credentials.

Get your credentials

  • Go to Omie Developer Portal
  • Create an account
  • Register an application to get app key and secret
  • Set the environment variables

Environment Variables

VariableRequiredDescription
OMIE_APP_KEYYesOmie app key
OMIE_APP_SECRETYesOmie app secret

Roadmap

v0.2 (planned)

  • create_service_order — Create a service order
  • list_service_orders — List service orders with filters
  • create_purchase_order — Create a purchase order
  • list_purchase_orders — List purchase orders with filters
  • get_bank_accounts — Get registered bank accounts

v0.3 (planned)

  • create_production_order — Create a production order
  • accounting_entries — Create and list accounting entries

Want to contribute? Open a PR or request a tool.

License

MIT

Keywords

mcp

FAQs

Package last updated on 01 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts