Skip to main content
Glama

Get Events

get_events
Read-onlyIdempotent

Search historical events on a specific date. Provide month (1-12) and day (1-31). Returns event descriptions, years, and details.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dayYesDay of the month (1-31).
monthYesMonth as a number (1-12).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYesThe date string from the API response
typeYesThe type of entries returned
countYesNumber of events found
eventsYesArray of historical events

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "day": 20,
      +    "month": 7
      +  },
      +  {
      +    "day": 25,
      +    "month": 12
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "count": {
      +      "description": "Number of events found",
      +      "type": "number"
      +    },
      +    "date": {
      +      "description": "The date string from the API response",
      +      "type": "string"
      +    },
      +    "events": {
      +      "description": "Array of historical events",
      +      "items": {
      +        "properties": {
      +          "description": {
      +            "description": "Event description",
      +            "type": "string"
      +          },
      +          "wikipedia": {
      +            "description": "Wikipedia references for the event",
      +            "items": {
      +              "properties": {
      +                "title": {
      +                  "description": "Wikipedia article title",
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "description": "Wikipedia article URL",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "type": "array"
      +          },
      +          "year": {
      +            "description": "Year the event occurred",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "year",
      +          "description",
      +          "wikipedia"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "type": {
      +      "description": "The type of entries returned",
      +      "enum": [
      +        "events"
      +      ],
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "date",
      +    "type",
      +    "count",
      +    "events"
      +  ],
      +  "type": "object"
      +}
  2. Changed2 schema fields changed
    • removedInput schema / examples
      Removed value: -[
      -  {
      -    "_apiKey": "your-mixpanel-api-key",
      -    "event": "Sign Up",
      -    "from_date": "2024-01-01",
      -    "to_date": "2024-01-31"
      -  },
      -  {
      -    "_apiKey": "your-mixpanel-api-key",
      -    "from_date": "2024-02-01",
      -    "to_date": "2024-02-29"
      -  }
      -]
    • changedOutput schema / (root)
      Previous value: -{
      -  "description": "Event data query result from Mixpanel",
      -  "type": "object"
      -}New value: +null
  3. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "description": "Event data query result from Mixpanel",
      +  "type": "object"
      +}
  4. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "_apiKey": "your-mixpanel-api-key",
      +    "event": "Sign Up",
      +    "from_date": "2024-01-01",
      +    "to_date": "2024-01-31"
      +  },
      +  {
      +    "_apiKey": "your-mixpanel-api-key",
      +    "from_date": "2024-02-01",
      +    "to_date": "2024-02-29"
      +  }
      +]
  5. First observed

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds value by disclosing the return content ('event descriptions, years, and details'), which goes beyond the annotations and gives the agent a clearer picture of the tool's output behavior.

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?

The description is two short sentences, front-loaded with the core action and then detailing parameters and returns. Every word earns its place with no redundancy or filler.

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

Completeness4/5

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

For a simple two-parameter tool with a well-defined input schema and an output schema present, the description provides enough context: what it does, what parameters are needed, and what it returns. It does not mention potential limitations (e.g., pagination, date range boundaries), but given the tool's simplicity and annotation coverage, this is not a significant gap.

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

Parameters3/5

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

The input schema already provides 100% coverage with descriptions for both 'month' and 'day', including their ranges. The description's mention of 'month (1-12) and day (1-31)' largely repeats the schema, adding no new semantic depth, so the baseline of 3 is appropriate.

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

Purpose4/5

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

The description clearly states a specific verb ('Search') and resource ('historical events') with a date qualifier, making the tool's purpose unambiguous. It does not explicitly differentiate from sibling tools like get_births or get_deaths, but the term 'historical events' implies a broader scope, earning a 4 rather than a 5.

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

Usage Guidelines3/5

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

The description implies when to use the tool: for searching historical events on a specific date, with required month and day parameters. However, it provides no explicit guidance on when not to use it or how it relates to alternative sibling tools such as get_births or get_deaths, so the context is clear but exclusions/alternatives are missing.

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.