← WebMCP Directory

Tool tree

jim.com

liveFinance & Crypto
https://jim.com/
Meet Jim — the AI partner that runs your payments and grows your business. Accept card payments on your phone, send links, and track sales. Start today.
Explore capabilities
calculate_payment_feesSensitive Action

Exact JIM fee and net payout for a sale. Covers Tap to Pay vs Payment Link, fee pass-through, and JIM Card vs ACH withdrawal. Use instead of estimating.

View tool JSON
{
  "name": "calculate_payment_fees",
  "kind": "transact",
  "impl": "imperative",
  "description": "Exact JIM fee and net payout for a sale. Covers Tap to Pay vs Payment Link, fee pass-through, and JIM Card vs ACH withdrawal. Use instead of estimating.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "amount_usd": {
        "type": "number",
        "description": "Sale amount in USD, before fees."
      },
      "method": {
        "type": "string",
        "enum": [
          "tap_to_pay",
          "payment_link"
        ],
        "description": "Tap to Pay is contactless in person; Payment Link is sent remotely."
      },
      "fee_paid_by": {
        "type": "string",
        "enum": [
          "seller",
          "customer"
        ],
        "description": "Who absorbs the processing fee. Default seller."
      },
      "payout": {
        "type": "string",
        "enum": [
          "jim_card",
          "ach_transfer"
        ],
        "description": "How the seller withdraws. JIM Card is free. Default jim_card."
      }
    },
    "required": [
      "amount_usd",
      "method"
    ],
    "additionalProperties": false
  }
}
get_pricingAnswer

JIM's pricing as structured data: account, processing rates, payout costs, Bookings, availability. Use calculate_payment_fees to price a specific sale.

View tool JSON
{
  "name": "get_pricing",
  "kind": "answer",
  "impl": "imperative",
  "description": "JIM's pricing as structured data: account, processing rates, payout costs, Bookings, availability. Use calculate_payment_fees to price a specific sale.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "topic": {
        "type": "string",
        "enum": [
          "all",
          "account",
          "payment_processing",
          "payouts",
          "bookings",
          "availability"
        ],
        "description": "Which section to return. Default all."
      }
    },
    "additionalProperties": false
  }
}