Lucairn Privacy Gateway

Created By
Decladea month ago
Lucairn is an EU-based privacy gateway that sits between your MCP-enabled agent and the upstream LLM (Claude, GPT-4o, o1/o3/o4). What it does: - Automatically detects and replaces PII — names, emails, IBANs, addresses, phone numbers, customer IDs — with placeholders before reaching the upstream LLM. The model never sees the raw values. - Each response carries a signed compliance certificate (ed25519 + RFC 3161 timestamp + Sigstore Rekor inclusion proof) that proves what was redacted, when, and by which sanitizer layer. - Cross-provider BYOK: bring your own ANTHROPIC_API_KEY and/or OPENAI_API_KEY. Routing is automatic by model prefix (claude-* → Anthropic, gpt-* / o1-* → OpenAI). - Free Developer tier with 1,000 requests/month. Pro and Enterprise tiers unlock higher quotas and re-linkage of placeholders to original values in the response. Exposes one MCP tool, `chat_via_lucairn`, using the Anthropic Messages API wire format. Compatible with any MCP client (Claude Desktop, Cline, Continue, Cursor, etc.). Source: https://github.com/Declade/lucairn-sdks Glama listing: https://glama.ai/mcp/servers/Declade/lucairn-sdks Docs: https://lucairn.eu
Overview

Lucairn Privacy Gateway — MCP Server

EU-based privacy gateway for AI agents. Lucairn sits between your MCP-enabled client and upstream OpenAI or Anthropic models, pseudonymizes PII before the model sees it, and returns a signed verification receipt for each request.

Free Developer tier: 500 requests/month. Bring your own provider key with ANTHROPIC_API_KEY, OPENAI_API_KEY, or both. No credit card required.

Quick Start

npx -y @lucairn/mcp-server
The server speaks MCP over stdio and exposes one tool, chat_via_lucairn.

Configure Your MCP Client
Add this to your MCP config file, such as claude_desktop_config.json, cline_mcp_settings.json, or a Cursor/Continue MCP config:

{
  "mcpServers": {
    "lucairn": {
      "command": "npx",
      "args": ["-y", "@lucairn/mcp-server@latest"],
      "env": {
        "LUCAIRN_API_KEY": "<your_lucairn_api_key>",
        "ANTHROPIC_API_KEY": "<optional_byok_anthropic_key>",
        "OPENAI_API_KEY": "<optional_byok_openai_key>"
      }
    }
  }
}
Restart your MCP client. The chat_via_lucairn tool should appear automatically.

Get a Lucairn API Key
Create a free Developer account:

https://lucairn.eu/account/signup

Developer is BYOK and includes 500 requests/month through the hosted gateway.

What the Server Does
Your agent calls chat_via_lucairn with a messages-style payload: model, messages, max_tokens, and optional system / temperature.
Lucairn scans user content for personal data such as names, emails, IBANs, addresses, phone numbers, customer IDs, and similar identifiers.
Detected PII is replaced with placeholders such as [PERSON_1], [EMAIL_2], or [IBAN_3] before the request reaches the upstream model.
The upstream model receives only the sanitized prompt.
Lucairn returns the model response plus a signed verification receipt showing what was detected and pseudonymized.
Developer-tier responses keep placeholders visible. Pro and Enterprise can support relinking workflows.
Provider Routing
Lucairn routes from the model parameter and the BYOK keys you provide.

Model prefix	Routes to	Env var used
claude-*, anthropic-*	Anthropic	ANTHROPIC_API_KEY
gpt-*, openai-*, o1-*, o3-*, o4-*	OpenAI	OPENAI_API_KEY
Use any supported OpenAI or Anthropic model available to your provider account. If you only set one provider key, call models from that provider.

Links
Source: https://github.com/Declade/lucairn-sdks
npm: https://www.npmjs.com/package/@lucairn/mcp-server
Setup docs: https://lucairn.eu/developer/mcp
Sign up: https://lucairn.eu/account/signup
Verify receipts: https://lucairn.eu/verify
Glama listing: https://glama.ai/mcp/servers/Declade/lucairn-sdks
License
MIT — see https://github.com/Declade/lucairn-sdks/blob/main/LICENSE

Server Config

{
  "mcpServers": {
    "lucairn": {
      "url": "https://gateway.lucairn.eu/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR_LUCAIRN_API_KEY>"
      }
    }
  }
}
Project Info
Created At
a month ago
Updated At
a month ago
Author Name
Declade
Star
-
Language
-
License
-
Category

Recommend Servers

View All
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

10 hours ago
Puter Mcp

2 days ago
Linkpulse

13 hours ago