Documentation

Get from zero to first query in under 5 minutes.

Currently in internal testing. Public release coming soon. Some features shown below may not yet be publicly available. Contact us for early access.

1 Quick Start

Clone the LLMs.txt Repository

Terminal
$ git clone https://github.com/afterpartyai/llms_txt_store.git

npm MCP package coming soon. For now, access the data directly via the GitHub repository.

MCP Config (coming soon)

claude_desktop_config.json Coming soon
{
  "mcpServers": {
    "readyai": {
      "command": "npx",
      "args": ["@readyai/mcp-server"]
    }
  }
}

The MCP server npm package is under development. For now, access the structured data directly via the GitHub repository.

Current access: Data is freely available on GitHub. Managed MCP access with API keys and usage tiers coming soon. See pricing roadmap.

2 Planned MCP Tools

readyai_search Coming Soon

Search across all ReadyAI structured datasets. Returns ranked results with source attribution and confidence scores.

{
  "query": "kubernetes service mesh architecture",
  "type": "coding_intelligence",  // optional filter
  "limit": 5
}
readyai_get_llms_txt Coming Soon

Get the structured llms.txt summary for any domain in our catalog. Deterministic O(1) lookup.

{
  "domain": "stripe.com"
}
readyai_web_enrich Coming Soon

Extract structured metadata from any URL. Returns entities, semantic tags, topics, and page-level summaries.

{
  "url": "https://example.com/blog/post",
  "extract": ["entities", "tags", "summary"]
}
readyai_coding_search Coming Soon

Search developer knowledge specifically. Returns architecture decisions, best practices, and reasoning from technical conversations.

{
  "query": "when to use event sourcing vs CRUD",
  "language": "python",    // optional
  "framework": "fastapi"   // optional
}

3 Platform Integration

Claude Desktop

Add to claude_desktop_config.json

Supported

Cursor

Add to MCP settings in Cursor preferences

Supported

VS Code (Copilot)

Add to .vscode/mcp.json

Supported

Python / TypeScript

Use any MCP client SDK to connect programmatically

Supported

4 Access the Data Now

Fetch an llms.txt file directly

Each domain's llms.txt is accessible via a deterministic path on GitHub. Domains use a character-exploded directory structure for O(1) lookup.

Terminal
# Example: fetch cnn.com llms.txt
$ curl https://raw.githubusercontent.com/afterpartyai/llms_txt_store/master/com/c/n/n/llms.txt

# Example: fetch mit.edu llms.txt
$ curl https://raw.githubusercontent.com/afterpartyai/llms_txt_store/master/edu/m/i/t/llms.txt

Path construction

To look up any domain, construct the path by extracting the TLD and character-exploding the domain name:

Pattern
# Pattern: /{tld}/{char-exploded-domain}/llms.txt
cnn.com     com/c/n/n/llms.txt
ebay.com    com/e/b/a/y/llms.txt
mit.edu     edu/m/i/t/llms.txt
bbc.co.uk   co.uk/b/b/c/llms.txt

5 Agent Payments

Coming Soon

Agent payment rails are under development. ReadyAI will support payment via SN33 token and USDC, enabling autonomous agent transactions with no human approval needed.

Current access to LLMs.txt data is free via the GitHub repository. Paid API access with micropayments coming soon.

Coming soon: SN33 token and USDC payment support for MCP queries. Contact us for early access.

Need help?

Join our Discord or reach out directly.