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

# Available tools

> Every tool the Developer MCP server exposes to your AI coding assistant.

Developer MCP exposes 2 read-only tools. Your AI assistant decides which to call based on your prompt - you don't need to invoke them directly.

| Tool                                     | What it does                                                              |
| ---------------------------------------- | ------------------------------------------------------------------------- |
| [search\_my\_truv](#search_my_truv)      | Search the MyTruv knowledge base for articles, guides, and API references |
| [get\_page\_my\_truv](#get_page_my_truv) | Retrieve the full content of a specific documentation page                |

***

## search\_my\_truv

Searches MyTruv documentation for content matching your query. Returns matching pages with titles, snippets, and direct links. Use this when you need to find information without knowing the exact page path.

Parameters:

| Parameter | Type   | Required | Description                                         |
| --------- | ------ | -------- | --------------------------------------------------- |
| query     | string | Yes      | Search query (e.g. "how to connect a bank account") |

Response fields:

| Field   | Type   | Description                            |
| ------- | ------ | -------------------------------------- |
| title   | string | Page title                             |
| path    | string | Page path (pass to `get_page_my_truv`) |
| content | string | Relevant content snippet               |
| url     | string | Direct link to the page                |

Example prompt: *"What security measures does MyTruv use?"*

The tool is called with a query like `"security data protection"` and returns matching pages such as *How Your Data Is Protected*, *Is MyTruv Safe?*, and *Who Can See My Data?*.

***

## get\_page\_my\_truv

Fetches the complete content of a documentation page by its path. Use this when you already have a path - either from `search_my_truv` results or from a known documentation structure.

Parameters:

| Parameter | Type   | Required | Description                                                             |
| --------- | ------ | -------- | ----------------------------------------------------------------------- |
| page      | string | Yes      | Page path (e.g. `api-reference/overview`, `billing/subscription-plans`) |

Response: the full rendered content of the requested documentation page as text.

Example prompt: *"Show me the full page about subscription plans."*

The tool is called with `page: "billing/subscription-plans"` and returns the complete content of that page, including plan details, pricing, and feature comparisons.

***

## Next steps

<div className="mytruv-card-grid">
  <a className="mytruv-card" href="/docs-mcp/overview">
    <span className="mytruv-card__icon">
      <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.75" strokeLinecap="round" strokeLinejoin="round">
        <path d="M16 18l6-6-6-6" />

        <path d="M8 6l-6 6 6 6" />
      </svg>
    </span>

    <h3 className="mytruv-card__title">Developer MCP overview</h3>
    <p className="mytruv-card__body">Setup instructions for each AI client.</p>

    <span className="mytruv-card__arrow">
      <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
        <path d="M7 17L17 7" />

        <path d="M8 7h9v9" />
      </svg>
    </span>
  </a>

  <a className="mytruv-card" href="/mytruv-mcp/overview">
    <span className="mytruv-card__icon">
      <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.75" strokeLinecap="round" strokeLinejoin="round">
        <path d="M9 2v6" />

        <path d="M15 2v6" />

        <path d="M6 8h12v4a6 6 0 0 1-12 0z" />

        <path d="M12 18v4" />
      </svg>
    </span>

    <h3 className="mytruv-card__title">MyTruv MCP</h3>
    <p className="mytruv-card__body">The user-data MCP for accessing personal financial data.</p>

    <span className="mytruv-card__arrow">
      <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
        <path d="M7 17L17 7" />

        <path d="M8 7h9v9" />
      </svg>
    </span>
  </a>
</div>
