Skip to main content
Glama
Arjein

Polymarket MCP Server

by Arjein

search_events

Find and filter Polymarket prediction events by query, tag, active/closed status, and sort order to discover thematic markets and related outcomes.

Instructions

Search and discover Polymarket prediction events.

Events function as high-level thematic containers grouping related markets (e.g., '2024 US Presidential Election' containing multiple candidate markets). This serves as the primary entry point for exploring the Polymarket ecosystem.

Args: query (Optional[str]): A search term utilized to filter events by their title or descriptive slug. tag (Optional[str]): A thematic category tag for filtering (e.g., 'politics', 'crypto', 'sports'). active (Optional[bool]): Set to true to strictly return currently active and open events. closed (Optional[bool]): Set to true to strictly return resolved or closed events. order (Optional[str]): The chronological or statistical field to sort results by (e.g., 'volume', 'created_at', 'end_date_iso'). ascending (Optional[bool]): The sort direction. Defaults to false (descending order). limit (Optional[int]): The maximum number of paginated results to return. offset (Optional[int]): The pagination offset for results.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNo
limitNo
orderNo
queryNo
activeNo
closedNo
offsetNo
ascendingNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses read-only search semantics, pagination via limit/offset, and default sort direction (ascending defaults to false). But it omits return format, default page size, behavior when no filters are passed, and rate/limit constraints. Has an output schema, which covers return shape, lowering the bar somewhat.

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

Conciseness3/5

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

Front-loaded with purpose and hierarchy explanation, which is good. The Args block is functional but verbose in a Python-docstring style; the ordering sentence is slightly wordy ('chronological or statistical field to sort results by'). Trade-off between completeness and conciseness is acceptable but not tight.

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 an 8-parameter, filter-heavy search with optional params and an output schema, the description covers purpose, placement in the ecosystem, and every parameter. Missing only cross-references to sibling tools (search_markets/get_event) and return-volume/pagination defaults, so it is nearly complete.

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?

Schema coverage is 0%, so the description must compensate: it does, documenting all 8 parameters with semantics (query filters by title/slug, tag is thematic category, active/closed scopers, order field examples, ascending default). It adds real meaning beyond the bare schema, though some specifics (valid order values, max limit) are generalized rather than enumerated.

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?

States a clear verb (search/discover) and resource (Polymarket prediction events), and importantly distinguishes events from markets: 'Events function as high-level thematic containers grouping related markets.' This differentiates it from sibling search_markets and get_event.

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?

Explicitly frames the tool as 'the primary entry point for exploring the Polymarket ecosystem,' giving clear context for when to use it. However, it does not name alternatives (e.g., search_markets for individual markets, get_event for a specific event id) or state when not to use it.

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