get-market-types
Query supported market types for a specific exchange using PCM MCP server, enabling precise analysis and interaction with IDA Pro for reverse engineering tasks.
Instructions
Get market types supported by an exchange
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | Yes | Exchange ID (e.g., binance, coinbase) |
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"
}
},
"required": [
"exchange"
],
"type": "object"
}