exchanges

Pack: polygon-io · Endpoint: https://gateway.pipeworx.io/polygon-io/mcp

Reference list of exchanges Polygon.io covers: US stock exchanges (NYSE, NASDAQ, etc.), options venues, crypto exchanges, and OTC tiers. Returns MIC code, name, asset class, type, locale.

Parameters

NameTypeRequiredDescription
asset_classstringno
localestringno

Example call

Arguments

{
  "asset_class": "stocks"
}

curl

curl -X POST https://gateway.pipeworx.io/polygon-io/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"exchanges","arguments":{"asset_class":"stocks"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('exchanges', {
  "asset_class": "stocks"
});

Response shape

FieldTypeDescription
statusstringAPI response status
resultsarrayExchange data
countnumberNumber of results
Full JSON Schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "API response status"
    },
    "results": {
      "type": "array",
      "description": "Exchange data",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Exchange ID"
          },
          "type": {
            "type": "string",
            "description": "Exchange type"
          },
          "mic": {
            "type": "string",
            "description": "Market Identifier Code"
          },
          "name": {
            "type": "string",
            "description": "Exchange name"
          },
          "tape_id": {
            "type": "string",
            "description": "Tape identifier"
          },
          "url": {
            "type": "string",
            "description": "Exchange URL"
          }
        }
      }
    },
    "count": {
      "type": "number",
      "description": "Number of results"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "polygon-io": {
      "url": "https://gateway.pipeworx.io/polygon-io/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026