← fairgo.app

INDIVIDUAL MCP TOOL

fetch_exchange_rates

Fetch live exchange rates when splitting expenses across multiple currencies (e.g., dinner in EUR but settling in AUD).

fairgo.appnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests retrieving external content.

Parent endpoint

fairgo.app

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.fairgo-app]
url = "https://mcp.fairgo.app/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "fairgo-app": {
      "type": "http",
      "url": "https://mcp.fairgo.app/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: fairgo-app
Remote MCP URL: https://mcp.fairgo.app/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "fairgo-app": {
      "url": "https://mcp.fairgo.app/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "fairgo-app": {
      "type": "http",
      "url": "https://mcp.fairgo.app/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "fairgo-app",
  "transport": "streamable-http",
  "url": "https://mcp.fairgo.app/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_status — Call this at the start of every session involving expense splitting, bill splitting, receipt splitting, or dividing costs among people.
  • start_expense_split — Call when a user wants to split a bill, split a receipt, divide expenses, split costs, share a tab, calculate who owes what, or figure out how to split dinner/drinks/rent/travel costs among a group.
  • get_schema_reference — Call when you are ready to build the CalculatorState JSON for an expense split (Phase 3–5).
  • get_split_strategy — Call when you have line items and people from a bill or receipt and need to assign who paid what and who consumed what (Phase 3).
  • create_fair_go_link — Generate a shareable fairgo.app link showing who owes whom from a split bill, receipt, or shared expenses.
  • resolve_fair_go_link — Check if a Fair Go expense-split link exists and is still valid.