← Back to Plugins
MCP Server MCP

io.github.Declade/lucairn-mcp-server

github By github 👁 1 views ▲ 0 votes

Pseudonymizes PII before your LLM and returns a cryptographically signed receipt per response.

Homepage Verified source GitHub

Install

npx -y @lucairn/[email protected]

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "npm",
      "identifier": "@lucairn/mcp-server",
      "version": "1.2.9",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Lucairn gateway API key (lcr_live_*). Issued at https://lucairn.eu/account/keys. Free tier requires BYOK upstream LLM keys (ANTHROPIC_API_KEY or OPENAI_API_KEY).",
          "isRequired": true,
          "format": "string",
          "isSecret": true,
          "name": "LUCAIRN_API_KEY"
        },
        {
          "description": "Upstream Anthropic API key. Used when the requested model is claude-* / anthropic-*. Required if you call Claude models on the free tier (BYOK).",
          "format": "string",
          "isSecret": true,
          "name": "ANTHROPIC_API_KEY"
        },
        {
          "description": "Upstream OpenAI API key. Used when the requested model routes to OpenAI. Required if you call OpenAI models on the free tier (BYOK).",
          "format": "string",
          "isSecret": true,
          "name": "OPENAI_API_KEY"
        },
        {
          "description": "Override the gateway URL. Defaults to https://gateway.lucairn.eu (production). Set this to point at a self-hosted Lucairn deployment.",
          "format": "string",
          "name": "LUCAIRN_BASE_URL"
        },
        {
          "description": "Transport mode for the MCP server. One of 'direct-http' (default; v1.1+ behavior) or 'stdio-bridge' (v1.2+ opt-in).",
          "format": "string",
          "name": "LUCAIRN_TRANSPORT"
        }
      ]
    }
  ]
}
mcp model-context-protocol npm

Comments

Sign in to leave a comment

Loading comments...