← fairgo.app

INDIVIDUAL MCP TOOL

preview_settlement

Compute balances, suggested transfers, and the forgiveness ledger for a CalculatorState — including both Live (post-transfers) and Expenses Only views — without saving it.

fairgo.appnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.fairgo.app/mcp

No auth detected

Connect to this endpoint to inspect the live schema for preview_settlement and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.

Parent server

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-mcp]
url = "https://mcp.fairgo.app/mcp"
enabled = true
Claude Code

.mcp.json

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

Settings → Connectors → Add custom connector

Name: fairgo-mcp
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-mcp": {
      "url": "https://mcp.fairgo.app/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

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

Client-specific MCP configuration

{
  "name": "fairgo-mcp",
  "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).
  • get_manage_link_guide — Call when you have an existing fairgo.app link in hand (from resolve_fair_go_link or decode_fair_go_link) and need link-type semantics, PIN rules, or uncoded error recovery (413/429/repeated-failure fallback).
  • fetch_exchange_rates — Fetch live exchange rates when splitting expenses across multiple currencies (e.g., dinner in EUR but settling in AUD).
  • create_fair_go_link — Generate shareable fairgo.app links showing who owes whom from a split bill, receipt, or shared expenses.
  • resolve_fair_go_link — If you haven't called get_status yet this session, call it first.