Skip to main content
Glama

Pollar News

Get market data

get_markets
Read-only

Returns market data tracked by Pollar, including European and global indices, currencies, crypto, commodities, and bonds. With no arguments, returns the quote catalogue. Pass an exact catalogue symbol for detail and an optional range for history.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rangeNo
symbolNoExact symbol from the catalog, e.g. '^GDAXI'. Call with no args first to list valid symbols.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
openNo
priceNo
changeNo
dayLowNo
symbolNo
volumeNo
dayHighNo
historyNo
sectionNo
currencyNo
sectionsNo
sparklineNo
topMoversNo
updatedAtNo
marketStateNo
exchangeNameNo
changePercentNo
previousCloseNo
fiftyTwoWeekLowNo
fiftyTwoWeekHighNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "change": {
      +      "type": "number"
      +    },
      +    "changePercent": {
      +      "type": "number"
      +    },
      +    "currency": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "dayHigh": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "dayLow": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "exchangeName": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "fiftyTwoWeekHigh": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "fiftyTwoWeekLow": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "history": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "currency": {
      +          "anyOf": [
      +            {
      +              "type": "string"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ]
      +        },
      +        "points": {
      +          "items": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "c": {
      +                "type": "number"
      +              },
      +              "t": {
      +                "type": "number"
      +              }
      +            },
      +            "required": [
      +              "t",
      +              "c"
      +            ],
      +            "type": "object"
      +          },
      +          "type": "array"
      +        },
      +        "range": {
      +          "enum": [
      +            "1d",
      +            "1w",
      +            "1m",
      +            "3m",
      +            "1y",
      +            "5y"
      +          ],
      +          "type": "string"
      +        },
      +        "symbol": {
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "symbol",
      +        "range",
      +        "points",
      +        "currency"
      +      ],
      +      "type": "object"
      +    },
      +    "marketState": {
      +      "type": "string"
      +    },
      +    "name": {
      +      "type": "string"
      +    },
      +    "open": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "previousClose": {
      +      "type": "number"
      +    },
      +    "price": {
      +      "type": "number"
      +    },
      +    "section": {
      +      "type": "string"
      +    },
      +    "sections": {
      +      "additionalProperties": {
      +        "items": {
      +          "additionalProperties": false,
      +          "properties": {
      +            "change": {
      +              "type": "number"
      +            },
      +            "changePercent": {
      +              "type": "number"
      +            },
      +            "currency": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "marketState": {
      +              "type": "string"
      +            },
      +            "name": {
      +              "type": "string"
      +            },
      +            "previousClose": {
      +              "type": "number"
      +            },
      +            "price": {
      +              "type": "number"
      +            },
      +            "section": {
      +              "type": "string"
      +            },
      +            "sparkline": {
      +              "anyOf": [
      +                {
      +                  "items": {
      +                    "type": "number"
      +                  },
      +                  "type": "array"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "symbol": {
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "symbol",
      +            "name",
      +            "section",
      +            "price",
      +            "previousClose",
      +            "change",
      +            "changePercent",
      +            "currency",
      +            "marketState",
      +            "sparkline"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    },
      +    "sparkline": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "type": "number"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "symbol": {
      +      "type": "string"
      +    },
      +    "topMovers": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "gainers": {
      +          "items": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "change": {
      +                "type": "number"
      +              },
      +              "changePercent": {
      +                "type": "number"
      +              },
      +              "currency": {
      +                "anyOf": [
      +                  {
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "marketState": {
      +                "type": "string"
      +              },
      +              "name": {
      +                "type": "string"
      +              },
      +              "previousClose": {
      +                "type": "number"
      +              },
      +              "price": {
      +                "type": "number"
      +              },
      +              "section": {
      +                "type": "string"
      +              },
      +              "sparkline": {
      +                "anyOf": [
      +                  {
      +                    "items": {
      +                      "type": "number"
      +                    },
      +                    "type": "array"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "symbol": {
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "symbol",
      +              "name",
      +              "section",
      +              "price",
      +              "previousClose",
      +              "change",
      +              "changePercent",
      +              "currency",
      +              "marketState",
      +              "sparkline"
      +            ],
      +            "type": "object"
      +          },
      +          "type": "array"
      +        },
      +        "losers": {
      +          "items": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "change": {
      +                "type": "number"
      +              },
      +              "changePercent": {
      +                "type": "number"
      +              },
      +              "currency": {
      +                "anyOf": [
      +                  {
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "marketState": {
      +                "type": "string"
      +              },
      +              "name": {
      +                "type": "string"
      +              },
      +              "previousClose": {
      +                "type": "number"
      +              },
      +              "price": {
      +                "type": "number"
      +              },
      +              "section": {
      +                "type": "string"
      +              },
      +              "sparkline": {
      +                "anyOf": [
      +                  {
      +                    "items": {
      +                      "type": "number"
      +                    },
      +                    "type": "array"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "symbol": {
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "symbol",
      +              "name",
      +              "section",
      +              "price",
      +              "previousClose",
      +              "change",
      +              "changePercent",
      +              "currency",
      +              "marketState",
      +              "sparkline"
      +            ],
      +            "type": "object"
      +          },
      +          "type": "array"
      +        }
      +      },
      +      "required": [
      +        "gainers",
      +        "losers"
      +      ],
      +      "type": "object"
      +    },
      +    "updatedAt": {
      +      "type": "string"
      +    },
      +    "volume": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description adds context about the types of data and the two modes of operation, going beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with purpose, and no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, the description sufficiently covers behavior for all argument combinations and the type of data returned.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description clarifies that no arguments return the catalogue, a symbol provides detail, and an optional range adds history. This adds meaning beyond the schema’s 50% coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it returns market data across multiple asset classes and distinguishes from siblings that are not market-specific.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains behavior with and without arguments, and the schema hint to call with no args first. It lacks explicit when-not or alternatives but is sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources