{
  "info": {
    "name": "Wise — mcp.ai",
    "description": "REST API for the Wise MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/wise",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "wise_get_balance_statement",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/balance/statement",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "balance",
            "statement"
          ]
        },
        "description": "Extrato completo de um balance (uma moeda) num período: deposits, withdrawals, conversions, fees, INTEREST e — crucialmente — CARD_TRANSACTION (compras com o cartão de débito Wise). Este é o ÚNICO end",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profile_id\": 0,\n  \"balance_id\": 0,\n  \"currency\": \"\",\n  \"interval_start\": \"\",\n  \"interval_end\": \"\",\n  \"type\": \"\",\n  \"account\": \"\",\n  \"profile_ids\": \"\",\n  \"balance_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wise_get_card_transaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/card/transaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "card",
            "transaction"
          ]
        },
        "description": "Detalhe de uma transação de cartão Wise. `token` é o id que apareceu como CARD_PAYMENT em wise_list_activities ou em creditCardMetadata em wise_get_balance_statement.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"token\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wise_list_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "activities"
          ]
        },
        "description": "Feed unificado de atividades do profile, mais recente primeiro. Cada item tem type (TRANSFER, CARD_PAYMENT, INTEREST, EXCHANGE, BALANCE_DEPOSIT, …). SCA-protegido.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profile_id\": 0,\n  \"size\": 0,\n  \"next_cursor\": \"\",\n  \"since\": \"\",\n  \"until\": \"\",\n  \"status\": \"\",\n  \"monetary_resource_type\": \"\",\n  \"account\": \"\",\n  \"profile_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wise_list_balances",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/balances",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "balances"
          ]
        },
        "description": "Lista os saldos multi-moeda de um profile. Cada balance tem um `id` que é usado em wise_get_balance_statement. Default STANDARD; passe 'SAVINGS' pra jars/pots.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profile_id\": 0,\n  \"types\": \"\",\n  \"account\": \"\",\n  \"profile_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wise_list_profiles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/profiles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "profiles"
          ]
        },
        "description": "Chama a Wise API /v2/profiles e retorna todos os profiles que o Personal Token enxerga (PERSONAL/BUSINESS). Use pra confirmar o profile_id antes de outras tools.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wise_list_transfers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/transfers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "transfers"
          ]
        },
        "description": "Lista transferências (P2P sends + receives) do profile. Filtre por status (CSV de estados como 'incoming_payment_waiting,outgoing_payment_sent'), moeda, datas. SCA-protegido.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profile_id\": 0,\n  \"status\": \"\",\n  \"source_currency\": \"\",\n  \"target_currency\": \"\",\n  \"created_date_start\": \"\",\n  \"created_date_end\": \"\",\n  \"offset\": 0,\n  \"limit\": 0,\n  \"account\": \"\",\n  \"profile_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}