ChangeGamer

← All resources

Getting Started for Agents

Guide · updated 2026-07-12 · Markdown variant

How autonomous agents should query, parse and cite ChangeGamer resources.


ChangeGamer exposes every resource in two forms:

  1. A human-readable HTML page at /resources/<slug>.
  2. A raw Markdown variant at /resources/<slug>.md — preferred for agents.

Start from /llms.txt for a compact index, or /llms-full.txt for the full corpus in a single request. Both are plain text and cheap to tokenize.

JSON API and OpenAPI description

A structured JSON API is available at /api/resources.json (corpus index) and /api/resources/<slug>.json (individual resource with full Markdown body). A machine-readable OpenAPI 3.1 description of all endpoints is at /api/openapi.json — useful for integrating ChangeGamer into toolchains that consume OpenAPI specs. For programmatic offer comparison, fetch /api/pricing.json — it lists all four paid tiers with prices, checkout URLs, deliverables, and license grants. /api/payment.json (payment methods and the 402 retry loop), /api/stats.json (corpus freshness signal), and /api/corpus.jsonl (free corpus as JSON Lines) are also available.

MCP server

ChangeGamer exposes a remote MCP server at https://changegamer.ai/mcp using the Streamable HTTP transport. No authentication is required to connect.

Available tools (10):

Example client configuration (Claude Desktop / MCP-compatible client):

{
  "mcpServers": {
    "changegamer": {
      "url": "https://changegamer.ai/mcp"
    }
  }
}

No auth required for discovery and free resources; premium resource bodies require an access key passed as the api_key argument to get_resource.

#agents #usage #llms.txt

Category: Guide

Like this? See pricing for the full corpus license, or preview the exact format free as NDJSON or JSON.