{
  "info": {
    "name": "Marketstack — mcp.ai",
    "description": "REST API for the Marketstack 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/marketstack",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "marketstack_get_dividends",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dividends",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dividends"
          ]
        },
        "description": "Tool to retrieve stock dividend data for one or more ticker symbols from Marketstack API. Use when you need historical dividend payment information for stocks, including dividend amounts and payment d",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"date_to\": \"\",\n  \"symbols\": \"\",\n  \"date_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_eod",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/eod",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "eod"
          ]
        },
        "description": "Tool to retrieve end-of-day (EOD) stock data for one or multiple ticker symbols. Returns OHLCV data (open, high, low, close, volume) along with adjusted prices, dividends, and split factors. Use when ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"date_to\": \"\",\n  \"symbols\": \"\",\n  \"exchange\": \"\",\n  \"date_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_exchange",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/exchange",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "exchange"
          ]
        },
        "description": "Tool to retrieve detailed information for a specific stock exchange by its MIC (Market Identifier Code). Use when you need comprehensive information about an exchange including its location, status, a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mic\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_exchange_intraday",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/exchange/intraday",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "exchange",
            "intraday"
          ]
        },
        "description": "Tool to retrieve intraday stock data for symbols on a specific stock exchange (by MIC) at a chosen interval. Use when you need intraday prices scoped to a particular exchange.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mic\": \"\",\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"date_to\": \"\",\n  \"symbols\": \"\",\n  \"interval\": \"\",\n  \"date_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_exchange_intraday_date",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/exchange/intraday/date",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "exchange",
            "intraday",
            "date"
          ]
        },
        "description": "Tool to retrieve intraday stock data for symbols on a specific stock exchange (by MIC) for a specific date. Use when you need the intraday series for a particular exchange and trading day.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mic\": \"\",\n  \"date\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"symbols\": \"\",\n  \"interval\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_exchange_intraday_latest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/exchange/intraday/latest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "exchange",
            "intraday",
            "latest"
          ]
        },
        "description": "Tool to retrieve the latest available intraday data for symbols on a specific stock exchange (by MIC). Use when you need the most recent live price snapshot scoped to a particular exchange.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mic\": \"\",\n  \"symbols\": \"\",\n  \"interval\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_intraday",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/intraday",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "intraday"
          ]
        },
        "description": "Tool to retrieve intraday (real-time and historical) stock data for one or multiple ticker symbols at a chosen interval (1min/5min/10min/15min/30min/1hour). Use when you need live prices or to build a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"date_to\": \"\",\n  \"symbols\": \"\",\n  \"exchange\": \"\",\n  \"interval\": \"\",\n  \"date_from\": \"\",\n  \"after_hours\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_intraday_date",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/intraday/date",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "intraday",
            "date"
          ]
        },
        "description": "Tool to retrieve intraday stock data for one or multiple ticker symbols on a specific date. Use when you need the intraday series for a particular trading day.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"symbols\": \"\",\n  \"exchange\": \"\",\n  \"interval\": \"\",\n  \"after_hours\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_intraday_latest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/intraday/latest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "intraday",
            "latest"
          ]
        },
        "description": "Tool to retrieve the latest available intraday data point(s) for one or multiple ticker symbols. Use when you need the most recent live price snapshot rather than a full intraday series.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"symbols\": \"\",\n  \"exchange\": \"\",\n  \"interval\": \"\",\n  \"after_hours\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_splits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/splits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "splits"
          ]
        },
        "description": "Tool to retrieve stock split data for one or more stock symbols from Marketstack. Use when you need historical split information including split factors and dates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"date_to\": \"\",\n  \"symbols\": \"\",\n  \"date_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_stock_price",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stock/price",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stock",
            "price"
          ]
        },
        "description": "Tool to retrieve the real-time (last known) stock price for a ticker symbol. Use when you need an up-to-the-minute price quote, for example to display a live price in a stock widget.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ticker\": \"\",\n  \"exchange\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_ticker_eod",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ticker/eod",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ticker",
            "eod"
          ]
        },
        "description": "Tool to retrieve end-of-day stock price data for a specific ticker symbol. Use when you need historical daily price information including open, high, low, close, volume, and adjusted values.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"symbol\": \"\",\n  \"exchange\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_ticker_eod_latest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ticker/eod/latest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ticker",
            "eod",
            "latest"
          ]
        },
        "description": "Tool to retrieve end-of-day (EOD) stock data for the latest available date for a specific ticker. Use when you need the most recent trading day data for a stock symbol.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"symbol\": \"\",\n  \"exchange\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_ticker_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ticker/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ticker",
            "info"
          ]
        },
        "description": "Tool to retrieve detailed information about stock tickers including exchange, sector, and industry data. Use when you need comprehensive company information for a ticker symbol.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ticker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_ticker_intraday",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ticker/intraday",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ticker",
            "intraday"
          ]
        },
        "description": "Tool to retrieve intraday stock data for a single ticker symbol at a chosen interval (1min/5min/10min/15min/30min/1hour). Use when you need a live price series for one stock, e.g. to render a 1D chart",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"symbol\": \"\",\n  \"date_to\": \"\",\n  \"exchange\": \"\",\n  \"interval\": \"\",\n  \"date_from\": \"\",\n  \"after_hours\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_get_ticker_intraday_latest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ticker/intraday/latest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ticker",
            "intraday",
            "latest"
          ]
        },
        "description": "Tool to retrieve the latest available intraday bar for a single ticker symbol, including real-time bid/ask quote fields. Use when you need the most recent live price snapshot for one stock.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"symbol\": \"\",\n  \"exchange\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_list_currencies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/currencies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "currencies"
          ]
        },
        "description": "Tool to retrieve a list of all supported currencies from the Marketstack API. Use when you need to get information about available currencies for stock market data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_list_exchanges",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/exchanges",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "exchanges"
          ]
        },
        "description": "Tool to retrieve information about supported stock exchanges. Use when you need to list or search for stock exchanges from the 2700+ exchanges available in Marketstack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"search\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "marketstack_list_tickers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tickers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tickers"
          ]
        },
        "description": "Tool to get a list of all supported stock tickers. Use when you need to obtain the full list of tickers supported by Marketstack or search for specific tickers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"search\": \"\",\n  \"exchange\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}