> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trophy.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Capabilities

> Learn about what the Trophy Docs MCP Server can do.

The Trophy Docs MCP Server exposes a small set of **read-only** tools scoped to public Trophy documentation. Agents should prefer these over prior memory for Trophy-specific questions.

<h2 id="search">
  Search
</h2>

| Tool                 | What it does                                                                                            |
| -------------------- | ------------------------------------------------------------------------------------------------------- |
| `search_trophy_docs` | Semantic-style search across the docs knowledge base; returns relevant snippets, titles, and page paths |

Use search for conceptual or “how do I…” questions — authentication, rate limits, feature behavior, integration patterns.

Example prompts:

```text theme={null}
Search Trophy docs for how points boosts work.
```

```text theme={null}
Find the Application API endpoint for submitting a metric event.
```

<h2 id="read-documentation-pages">
  Read Documentation Pages
</h2>

| Tool                                | What it does                                                                                   |
| ----------------------------------- | ---------------------------------------------------------------------------------------------- |
| `query_docs_filesystem_trophy_docs` | Run read-only shell-style queries against a virtual filesystem of docs pages and OpenAPI specs |

This is how the agent reads full pages once search returns a path. There is no separate “get page” tool — the agent uses commands like `head`, `cat`, `rg`, `tree`, or `ls` against paths such as `/features/streaks.mdx` or `/api-reference/introduction.mdx`.

Common patterns:

* `tree / -L 2` — explore docs structure
* `rg -il "rate limit" /` — exact keyword or regex matches
* `head -80 /getting-started/quickstart.mdx` — read the top of a page
* `cat /openapi/application.json | jq '...'` — inspect OpenAPI when schema detail matters

Output is truncated per call, so good agents use targeted reads rather than dumping entire large files.

Example prompts:

```text theme={null}
Open the streaks feature page and summarize freeze behavior.
```

```text theme={null}
From the Application API OpenAPI, list the user endpoints.
```

<h2 id="feedback">
  Feedback
</h2>

| Tool              | What it does                                                                               |
| ----------------- | ------------------------------------------------------------------------------------------ |
| `submit_feedback` | Report incorrect, outdated, incomplete, or confusing documentation to the Trophy docs team |

This is for **docs content** issues (wrong example, missing step, broken explanation) — not product support or account help.

Example prompt:

```text theme={null}
The rate limiting page example looks wrong — file docs feedback on /api-reference/rate-limiting.
```

<h2 id="what-it-does-not-do">
  What It Does Not Do
</h2>

The Docs MCP Server cannot:

* Access or modify resources in your Trophy organization
* Call Trophy APIs

For account operations, install the [Account MCP Server](/mcp/account-mcp-server/capabilities).

<h2 id="next-steps">
  Next Steps
</h2>

<CardGroup>
  <Card title="Install Account MCP" icon="download" href="/mcp/account-mcp-server/installation">
    Install the Account MCP Server to your MCP client.
  </Card>

  <Card title="Account MCP capabilities" icon="wrench" href="/mcp/account-mcp-server/capabilities">
    Learn what the Trophy Account MCP can do.
  </Card>
</CardGroup>

<h2 id="get-support">
  Get Support
</h2>

Want to get in touch with the Trophy team? Reach out to us via [email](mailto:support@trophy.so). We're here to help!


## Related topics

- [Capabilities](/mcp/account-mcp-server/capabilities.md)
- [Best Practice](/mcp/best-practice.md)
- [Experimentation](/platform/experimentation.md)
- [Installation](/mcp/docs-mcp-server/installation.md)
