AI-native · MCP protocol · Claude Desktop

MCP Server

Lounbreck exposes a remote MCP (Model Context Protocol) server so Claude Desktop, Claude Code, and any MCP-compatible AI assistant can query your compliance data in natural language.

1. Generate an API key

In Lounbreck → Settings → API keys, create a key named something like "Claude Desktop". Copy the full key — it's shown once.

2. Configure Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "lounbreck": {
      "type": "http",
      "url": "https://lounbreck.com/api/mcp",
      "headers": {
        "Authorization": "Bearer lb_live_YOUR_API_KEY"
      }
    }
  }
}

3. Available tools

get_compliance_summaryHigh-level snapshot: employee counts, threshold statuses, alert counts, upcoming deadlines.
list_frontaliersAll frontalier employees with WFH day counts, threshold status, and SS regime. Optional corridor filter.
get_active_alertsUnresolved compliance alerts ordered by severity. Optional severity filter.
get_upcoming_deadlinesPending filing deadlines within N days (default 30).
get_employee_complianceFull compliance detail for a specific employee by email.
log_wfh_dayLog a work location (HOME / OFFICE / HOLIDAY / SICK) for an employee on a date.
add_employeeCreate a new frontalier employee. Checks plan limits. Requires name, email, nationality, corridor, and start date.
resolve_alertMark a compliance alert as resolved by ID.
update_a1_cert_statusSet the A1 certificate status (PENDING / OBTAINED / EXPIRED) for an employee.
simulate_scenarioWhat-if analysis: given a corridor and number of WFH days, returns threshold status, SS routing, and recommended actions. No real employee needed.

4. Example queries

"Which of my employees are approaching their WFH threshold?"

"Log today as a home day for jean-luc.martin@company.lu"

"How many active compliance alerts do I have and what are they?"

"What compliance deadlines are coming up in the next 2 weeks?"

"Give me a full compliance report for k.weber@company.lu"

"Add a new employee: Sophie Bernard, sophie@acme.lu, French national living in France, CDI, started 1 Jan 2026"

"Mark the critical alert about Marie Dupont as resolved"

"What happens if an LU-FR frontalier works 45 days from home this year?"

"Update k.weber@company.lu A1 certificate status to OBTAINED"

Authentication

All MCP requests require an API key in the Authorization: Bearer lb_live_... header. Keys are scoped to your organisation and can be revoked at any time from Settings.