{
  "info": {
    "name": "CurrencyScoop — mcp.ai",
    "description": "REST API for the CurrencyScoop 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/currencyscoop",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "currencyscoop_convert_currency2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/currency2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "currency2"
          ]
        },
        "description": "Tool to convert any amount from one currency to another using real-time or historical exchange rates. Use when you need to convert a specific amount between two currencies, optionally specifying a dat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"date\": \"\",\n  \"from\": \"\",\n  \"amount\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "currencyscoop_get_currencies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/currencies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "currencies"
          ]
        },
        "description": "Tool to retrieve all supported currencies including their names and countries. Use when you need information about available currencies, either fiat or crypto.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "currencyscoop_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 retrieve historical exchange rate data for past dates going back to 1996. Use when you need to access exchange rates for a specific historical date with a base currency.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"date\": \"\",\n  \"symbols\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "currencyscoop_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 retrieve real-time exchange rate data for all available currencies. Use when you need current exchange rates updated based on subscription plan frequency (e.g., every 60 seconds). Returns only",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"symbols\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "currencyscoop_get_timeseries_rates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/rates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "rates"
          ]
        },
        "description": "Tool to retrieve historical exchange rates for a given time period between start and end dates. Use when you need exchange rates for multiple dates in a date range for trend analysis or historical com",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"symbols\": \"\",\n  \"end_date\": \"\",\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}