Trade Matcher Server

v1.0.0

A powerful MCP server built with NitroStack

Connection Setup

Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):

{
  "mcpServers": {
    // your other mcp servers
    "trade-matcher-server": {
      "url": "https://trade-matcher-404-sleep-not-found-amrita-university-coimbatore.app.nitrocloud.ai/mcp"
    }
  }
}

Connect remote tools directly via Claude's Web UI:

Add custom connector BETA
Connect Claude to your data and tools. Learn more about connectors or get started with pre-built ones.
Advanced settings
Only use connectors from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.

Configure custom tools directly via ChatGPT's Web UI:

New App
PNG only. Best results at 256 x 256 px or larger. Max file size: 10 KB
Custom MCP servers introduce risk. Learn more
OpenAI hasn't reviewed this MCP server. Attackers may attempt to steal your data or trick the model into taking unintended actions, including destroying data.

Add the following configuration block under mcpServers in your Antigravity configuration file (~/.gemini/config/mcp_config.json):

{
  "mcpServers": {
    // your other mcp servers
    "trade-matcher-server": {
      "serverUrl": "https://trade-matcher-404-sleep-not-found-amrita-university-coimbatore.app.nitrocloud.ai/mcp"
    }
  }
}

Add the following configuration block to your Codex configuration file (~/.codex/config.toml):

[mcp_servers.trade-matcher-server]
url = "https://trade-matcher-404-sleep-not-found-amrita-university-coimbatore.app.nitrocloud.ai/mcp"

Connect directly using the Server-Sent Events endpoint:

https://trade-matcher-404-sleep-not-found-amrita-university-coimbatore.app.nitrocloud.ai/mcp
Available Tools
load_trades

Load mock trades from System A and/or System B

get_fx_rate_at_time

Get the FX rate for a currency pair at a given hour-level timestamp

get_settlement_window

Check if a given hour falls inside the known settlement/batch window for an instrument type

investigate_break

Investigate why two matched trades have a discrepancy

resolve_or_escalate

Takes the output of investigate_break and decides whether the break is resolved or should be escalated to a human

get_accuracy_stats

Returns running totals of resolved vs escalated breaks for the demo dashboard

match_trades

Compare System A and System B trades by symbol and flag breaks where price or quantity differ beyond tolerance

propose_correction

For an escalated (unexplained) trade break, propose what the likely correct value is and which system has the error. Never auto-applies -- always requires human approval.

run_reconciliation

Runs the full trade reconciliation pipeline end to end: loads trades, matches them, investigates every break, resolves or escalates each one, and proposes corrections for anything unexplained. Returns everything in one call.