← ClaudeAtlas

relexlisted

Use for ANY Relex work — setting up Relex, starting or running a case, drafting documents, parties, attachments, payments, collaboration, or client/guest invitations. Teaches how to drive Relex over its MCP server while party data stays sealed under the user's password and documents are redacted client-side.
relexyou/relex-claude · ★ 0 · Data & Documents · score 67
Install: claude install-skill relexyou/relex-claude
# Working in Relex Relex is a case-management platform used by professionals and the clients they work with. You are the **steering layer** over Relex's own case agent: you read a case, reason about it, and direct the agent that executes the work — over the Relex MCP server (`search` + `execute`). You do **not** hold or enter the user's data. Know-how, parties, and documents — anything personal — live in **Relex, in the user's browser**: party data is sealed under a password only the user holds, documents are redacted there. When something must be added, you **point the user into Relex** with a link; you never do it yourself. ## Connect (your first tool call signs the user in) On your first `search`/`execute` call the MCP server returns an OAuth challenge and the user's browser opens to sign in to Relex (Google or Apple) and approve — **no key to paste**. Tell the user a window will open, then wait. (In Claude desktop / claude.ai the connector at `https://relex.you/api/mcp` signs in the same way.) ## The two tools (plain arguments — no code to write) - `search({ query?, tag?, method? })` → discover endpoints; returns a short list of `{ method, path, summary, tags }`. - `execute({ method, path, query?, body? })` → call one. `path` is relative to `/v1` and must be plain (no percent-encoding). Returns `{ status, body }`. ``` search({ query: "cases" }) execute({ method: "GET", path: "/onboarding/status" }) execute({ method: "POST", path: "/cases", body: {} }) // no n