Skip to main content

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.

What is Developer MCP?

Developer MCP is MyTruv’s specialized Model Context Protocol server designed for developers building with MyTruv’s API. It enables AI assistants to search documentation, look up API endpoints, and provide implementation guidance directly within your development workflow. Unlike MyTruv MCP, no MyTruv account is needed - making it accessible to any developer exploring or integrating with MyTruv’s API.
This MCP is for developers building with MyTruv APIs. If you want your agent to access your personal financial data (balances, transactions, spending), see MyTruv MCP instead.

Setup

The Developer MCP server is hosted at:
https://help.mytruv.com/mcp
It uses Streamable HTTP transport - no local installation needed.

Claude Desktop

  1. Open Settings > Connectors
  2. Click Add custom connector
  3. Set Name to MyTruv Docs
  4. Set Remote MCP server URL to:
    https://help.mytruv.com/mcp
    
  5. Click Add

Claude Code

claude mcp add mytruv-docs --transport http https://help.mytruv.com/mcp

Cursor

Open Cursor Settings > Tools & MCP, click Add new MCP server, and select Streamable HTTP as the type. Or add directly to your mcp.json:
{
  "mcpServers": {
    "mytruv-docs": {
      "url": "https://help.mytruv.com/mcp"
    }
  }
}
Config file location:
~/.cursor/mcp.json

Codex

codex mcp add mytruv-docs --transport http -- https://help.mytruv.com/mcp
Or add it directly to your ~/.codex/config.toml:
[mcp_servers.mytruv-docs]
url = "https://help.mytruv.com/mcp"

Available tools

Two read-only tools - full reference on the Available tools page.
  • search_my_truv - search the knowledge base for articles, guides, and API references
  • get_page_my_truv - retrieve the full content of a specific documentation page

Using both MCP servers

You can run Developer MCP and MyTruv MCP together. This lets your agent both read documentation and access financial data in the same conversation.
{
  "mcpServers": {
    "mytruv-docs": {
      "url": "https://help.mytruv.com/mcp"
    },
    "mytruv-mcp": {
      "url": "https://api.mytruv.com/mcp"
    }
  }
}

Example use cases

  • “How does the transactions API endpoint work?”
  • “What parameters does the spending analysis endpoint accept?”
  • “How do I authenticate with the MyTruv API?”
  • “What institutions does MyTruv support?”
  • “Show me the income report response format”

Next steps

MyTruv MCP

Access your financial data via MCP

API Reference

REST API for programmatic access