Skip to main content
Every LivingContext organization exposes a Model Context Protocol (MCP) server. Point your AI coding tool at it and that tool can search your docs, query your Salesforce catalog, draft doc changes, and even drive the browser capture extension — all under your organization’s permissions.
The endpoint speaks streamable HTTP JSON-RPC, the standard MCP transport supported by modern clients.

Create a key

1

Open Settings → MCP server

Keys are managed per organization. Name the key (e.g. “Claude Code”), optionally give it an expiry, and click Create key.
2

Copy the key

Keys are prefixed lcmcp_ and shown once — copy it immediately and store it like any credential.
3

Paste the config snippet

The page provides a ready-to-paste mcpServers snippet — with your new key already substituted — that works in .mcp.json and the MCP settings of Claude Code, Cursor, and Cline alike, plus an optional rules snippet for CLAUDE.md / Cursor Rules so your agent reaches for LivingContext automatically.
For example, with Claude Code:

Security model

  • Keys are org-scoped — a key only reaches the organization it was created in.
  • Your membership is re-checked on every call; if you leave the org, the key stops working.
  • Writes respect your role — the MCP server can’t do anything you couldn’t do in the app. See Roles and permissions.
  • Write tools never publish directly: they land as change requests or pull requests for human review.

Tools

The server exposes 20+ tools across five areas.

Reads

Writes

Guide recording

Drive the browser capture extension remotely:

Org intelligence

The same Salesforce analysis available to the workspace agent:

Connections

Check what’s wired up before reading or writing (connecting itself happens in the app UI):

Example: docs maintenance from your editor

  1. Add the MCP server to Claude Code with your lcmcp_ key.
  2. Ask: “Our discount approval flow changed — update the docs that describe it.”
  3. The tool searches your docs, reads the current pages, pulls fresh metadata context, and drafts edits via update_doc.
  4. The edits arrive in LivingContext as change requests — you review and ship them like any other change.
Nothing bypasses review. Even a fully automated MCP client ends at the same gate as every agent: a human approves before anything merges.
Treat lcmcp_ keys like passwords. They’re shown once at creation — if a key leaks, revoke it in Settings → MCP and create a new one.
Prefer the terminal? The lc command-line client wraps these same tools — docs search, reviewed writes, and Salesforce intelligence — using your lcmcp_ key.