← settle.xxx

INDIVIDUAL MCP TOOL

void_invoice

Voids a pending invoice so the buyer can no longer pay it.

settle.xxxnone authenticationAvailability not checked

Input schema

{}

Risk classification

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

  • A tool name or description suggests a financial action.

Parent endpoint

settle.xxx

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

.mcp.json

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

Settings → Connectors → Add custom connector

Name: settle-xxx
Remote MCP URL: https://mcp.settle.xxx/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": {
    "settle-xxx": {
      "url": "https://mcp.settle.xxx/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

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

Client-specific MCP configuration

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

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

Related tools

  • get_started — Read this first.
  • whoami — Returns the current merchant's id, display name, mode (test/live), the chains with a verified payout address, the verified domain (if any), and the buyer-facing branding status (manual / auto-from-domain / Settle fallback).
  • get_integration_pattern — Returns a working server-route snippet, webhook handler, env vars, and install command for the merchant's framework.
  • register_payout_address — Step 1 of payout setup.
  • confirm_payout_address — Step 2 of payout setup.
  • list_payout_addresses — Lists every payout address the merchant has registered, with verification status and chain.
  • verify_domain — Begins domain verification by returning the TXT record the merchant must add to DNS.
  • enable_usdt_ethereum — Opts the merchant into accepting USDT on Ethereum mainnet.