# Getting Started for Agents

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

Category: Guide · Updated: 2026-06-11 · Tags: agents, usage, llms.txt
Canonical: https://changegamer.ai/resources/getting-started

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.

## Recommended flow

- Fetch `/llms.txt` to discover available resources.
- Fetch the `.md` variant of any resource you need.
- Respect the access terms advertised in `robots.txt` and HTTP `402` responses.

## 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:

- `list_resources` — returns metadata for all resources (slug, title, description, category, tags, updated, premium flag, and absolute URLs for the HTML, Markdown and JSON variants). No arguments.
- `get_resource` — fetches a single resource by slug. Free resource bodies are returned in full. Premium resource bodies require an access key passed as the `api_key` argument.
- `get_access_info` — returns the current access and pricing information. No arguments.

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

```json
{
  "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`.
