{
  "info": {
    "name": "Fixer — mcp.ai",
    "description": "REST API for the Fixer 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/fixer",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "fixer_get_historical_rates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/historical/rates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "historical",
            "rates"
          ]
        },
        "description": "Tool to get historical exchange rate data for a specific date. Use when you need past currency rates for all or selected currencies.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"date\": \"\",\n  \"symbols\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fixer_get_latest_rates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/latest/rates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "latest",
            "rates"
          ]
        },
        "description": "Tool to get real-time exchange rate data for all available or specified currencies. Use when you need current forex rates before performing currency conversions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"symbols\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fixer_get_supported_symbols",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/supported/symbols",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "supported",
            "symbols"
          ]
        },
        "description": "Tool to retrieve all supported currency symbols and their full names. Use when you need to display or validate available currencies before performing conversions.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}