{
  "info": {
    "name": "Fixer.io — mcp.ai",
    "description": "REST API for the Fixer.io 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_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "fixer_io_convert_currency",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/currency",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "currency"
          ]
        },
        "description": "Tool to convert an amount from one currency to another. Use when you need current or historical exchange rates. Specify `date` for historical rates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"amount\": 0,\n  \"to_currency\": \"\",\n  \"from_currency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fixer_io_get_fluctuation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/fluctuation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "fluctuation"
          ]
        },
        "description": "Tool to fetch exchange rate fluctuations between two dates. Use when you need day-to-day currency rate changes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"symbols\": \"\",\n  \"end_date\": \"\",\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fixer_io_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": "Fetch historical exchange rates for a specific date. Returns end-of-day (EOD) exchange rates for any date back to January 1, 1999. Use this when you need past currency conversion rates or historical f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"date\": \"\",\n  \"symbols\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fixer_io_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 the list of all available currency symbols and their corresponding names. Use when you need to fetch and display supported currency codes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"callback\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fixer_io_get_time_series",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/time/series",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "time",
            "series"
          ]
        },
        "description": "Retrieves daily foreign exchange rates for a date range. Returns a time series of exchange rates for each day between start_date and end_date (inclusive, max 365 days). The rates show how much of each",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"symbols\": \"\",\n  \"end_date\": \"\",\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}