INDIVIDUAL MCP TOOL
list_payments
Top-up payment history, newest first: status (pending, succeeded, failed, cancelled, disputed), exact USD amount, checkout_url while a hosted checkout is still pending, and the receipt link once credited.
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
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.pauli-xyz]
url = "https://pauli.xyz/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"pauli-xyz": {
"type": "http",
"url": "https://pauli.xyz/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: pauli-xyz
Remote MCP URL: https://pauli.xyz/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": {
"pauli-xyz": {
"url": "https://pauli.xyz/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"pauli-xyz": {
"type": "http",
"url": "https://pauli.xyz/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "pauli-xyz",
"transport": "streamable-http",
"url": "https://pauli.xyz/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_devices— The live device registry: provider, qubits, capabilities, queue depth, status, and price model per device.get_device— One device's registry entry by id.estimate_job— Price a circuit on every eligible device without enqueueing: per-device cost, what the wallet would debit, predicted queue seconds, fidelity score, plus reasoned exclusions for the rest.dry_run_job— The full submit preview, free: runs the identical validate/route path as submit_job and returns the routing decision a real submit would carry, the exact wallet debit, a read-only admission preview (would_admit, blocked_by), and the COMPLETE per-device exclusion reasons with stable machine codes.submit_job— Submit a circuit for execution.job_status— Job state, state history, device, and (once billed) the exact price.job_results— Canonical measurement counts (bit_ordering cbit0_left) with register map, provenance metadata, and billing.cancel_job— Request cancellation.