PCM

by rand-tech
Verified

get-markets

Retrieve all available markets for a specified exchange by providing the exchange ID and optional pagination parameters. Use this tool to streamline market data access within the PCM MCP server environment.

Instructions

Get all available markets for an exchange

Input Schema

NameRequiredDescriptionDefault
exchangeYesExchange ID (e.g., binance, coinbase)
pageNoPage number
pageSizeNoItems per page

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "exchange": { "description": "Exchange ID (e.g., binance, coinbase)", "type": "string" }, "page": { "default": 1, "description": "Page number", "type": "number" }, "pageSize": { "default": 100, "description": "Items per page", "type": "number" } }, "required": [ "exchange" ], "type": "object" }
ID: ma2f8iji6w