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.
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 the MyTruv knowledge base for articles, guides, and API references |
| 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