← Index

Lore Context

io.github.Lore-Context/lore-context-mcp·v0.6.0-alpha.1·Memory & RAG
Quality Score
90
/100

Governed AI-agent memory, Evidence Ledger traces, evals, and portable context tools.

§01  Install
Claude Desktop (claude_desktop_config.json)
{
  "mcpServers": {
    "lore-context-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@lore-context/server"
      ],
      "env": {
        "LORE_API_URL": "http://host.docker.internal:3000",
        "LORE_API_KEY": "<your-lore_api_key>",
        "LORE_MCP_TRANSPORT": "sdk"
      }
    }
  }
}
Cursor (.cursor/mcp.json)
{
  "mcpServers": {
    "lore-context-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@lore-context/server"
      ],
      "env": {
        "LORE_API_URL": "http://host.docker.internal:3000",
        "LORE_API_KEY": "<your-lore_api_key>",
        "LORE_MCP_TRANSPORT": "sdk"
      }
    }
  }
}
Cline (cline_mcp_settings.json)
npx -y @lore-context/server
Claude Desktop (Docker)
{
  "mcpServers": {
    "lore-context-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/lore-context/lore-context-mcp:0.6.0-alpha.1"
      ],
      "env": {
        "LORE_API_URL": "http://host.docker.internal:3000",
        "LORE_API_KEY": "<your-lore_api_key>",
        "LORE_MCP_TRANSPORT": "sdk"
      }
    }
  }
}
§02  Environment variables
LORE_API_URL
required

Base URL of the Lore API that the MCP server should proxy tool calls to.

LORE_API_KEY
secret

Optional Lore API key when the API is configured to require authentication.

LORE_MCP_TRANSPORT

MCP stdio transport implementation. Use sdk unless debugging legacy JSON-RPC mode.

LORE_API_URL
required

Base URL of the Lore API that the MCP server should proxy tool calls to.

LORE_API_KEY
secret

Optional Lore API key when the API is configured to require authentication.

LORE_MCP_TRANSPORT

MCP stdio transport implementation. Use sdk unless debugging legacy JSON-RPC mode.

§03  MCP Quality Score  ·  methodology
freshness
25
completeness
20
installability
25
documentation
15
stability
5
§04  Alternatives in Memory & RAG