Skip to main content

Reference Docs (Market)

mdmcp-market_data_docs

Reference documentation for market_data_table and market_data_options_search, one topic per call: filter_fields (every filter field with type, definition, valid values, and the operator validity table), metrics (metric ids and definitions, price-unit scales, retail-term routing), group_by_fields (group-by, histogram and percentile fields), dates_and_compare (date snapping, trend rules, multi-period combining, compare semantics), text_search (name/description query syntax). Pass ids to get only specific entries (supported for filter_fields, metrics, group_by_fields) — e.g. topic="filter_fields", ids=["gender", "tier"]. The query tool descriptions may not carry all of this inline — call this whenever you need a field id, metric id, valid value, operator, price scale or date rule you do not already have, and to re-read a section later.

Parameters

NameTypeRequiredConstraintsDescription
topicstringyesDocumentation section to retrieve.
idsstring[]noOptional: return only these field/metric ids. Supported for filter_fields, metrics and group_by_fields.

Try it

Loading interactive widget…

Code examples

curl -s https://mcp.edited.com/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "MCP-Protocol-Version: 2025-06-18" \
-H "x-api-key: $MCP_API_KEY" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "mdmcp-market_data_docs",
"arguments": {
"topic": "example"
}
}
}'

Input schema

{
"type": "object",
"properties": {
"topic": {
"description": "Documentation section to retrieve.",
"enum": [
"filter_fields",
"metrics",
"group_by_fields",
"dates_and_compare",
"text_search"
],
"type": "string"
},
"ids": {
"description": "Optional: return only these field/metric ids. Supported for filter_fields, metrics and group_by_fields.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"topic"
]
}