# cite > cite is the citation layer for agentic workflows: an open citation graph that humans and AI agents can read, reason over, and contribute back to. Documents are nodes, citations are edges, annotations are how humans and agents build the graph together. This instance exposes a Model Context Protocol (MCP) endpoint so agents can traverse the graph and cite the spans they pulled from. Released as OpenContracts since 2019; rebranded as cite for the v3 release line. ## MCP Server This instance exposes a read-only MCP server that AI agents can connect to for accessing public corpuses, documents, annotations, and discussion threads. - Endpoint (global): https://contracts.opensource.legal/mcp/ - Endpoint (corpus-scoped): https://contracts.opensource.legal/mcp/corpus/{corpus_slug}/ - Protocol: JSON-RPC 2.0 (MCP spec 2025-03-26) - Auth: None required (public data only) - Rate limit: 100 requests/minute per IP ### Connecting Use any MCP-compatible client. For Claude Desktop, add to config: ```json { "mcpServers": { "cite": { "command": "npx", "args": ["mcp-remote", "https://contracts.opensource.legal/mcp/"] } } } ``` ### Available Tools - `list_public_corpuses`: List all public corpuses (paginated, searchable) - `list_documents`: List documents in a corpus - `get_document_text`: Get full extracted text from a document - `list_annotations`: List annotations on a document (filter by page or label) - `search_corpus`: Semantic vector search within a corpus - `list_threads`: List discussion threads in a corpus - `get_thread_messages`: Get messages in a thread (flat or hierarchical) ### Available Resources (URI-based) - `corpus://{corpus_slug}` - Corpus metadata - `document://{corpus_slug}/{document_slug}` - Document with text - `annotation://{corpus_slug}/{document_slug}/{annotation_id}` - Annotation details - `thread://{corpus_slug}/threads/{thread_id}` - Discussion thread ## REST Search API A simple JSON search endpoint at `https://contracts.opensource.legal/api/search/?q=QUERY` is available for crawlers and lightweight integrations. ## Available Collections - **DGCL New** (slug: `DGCL-New`, 2 documents) - **No. 24-413 — Department of Education, et al. v. Career Colleges and Schools of Texas** (slug: `No-24-413-Department-of-Education-et-al-v-Career-Colleges-and-Schools-of-Texas`, 27 documents) - **No. 25-332 — Donald J. Trump, President of the United States, et al. v. Rebecca Kelly Slaughter, et al.** (slug: `No-25-332-Donald-J-Trump-President-of-the-United-States-et-al-v-Rebecca-Kelly-Slaughter-et-al`, 186 documents) - **South Carolina** (slug: `South-Carolina`, 1251 documents): Exploring South Carolina's Legal Framework Executive Summary South Carolina's legal corpus encapsulates a robust se... - **SpaceX (Space Exploration Technologies Corp.) - Form S-1 IPO Registration Statement** (slug: `New-Import-5`, 20 documents): SpaceX (Space Exploration Technologies Corp.) - Form S-1 IPO Registration Statement SEC EDGAR Form S-1 registration ... - **Cerebras Systems Inc. — Form S-1 IPO Registration Statement** (slug: `cerebras-s1`, 77 documents): version: "1.0" hero: kicker: "Exploring Cerebras Systems Inc." title: "Cerebras Systems' Path to the Public Mark... - **Eikon Therapeutics, Inc. — Form S-1 IPO Registration Statement** (slug: `eikon-ther-s1`, 28 documents): The executive summary of Eikon Therapeutics' S-1 filing provides an overview of their business strategy, financial me... ## Links - [Full MCP documentation](https://contracts.opensource.legal/llms-full.txt) - [Source code](https://github.com/Open-Source-Legal/cite) - [Project home](https://cite.opensource.legal)