Skip to main content
Glama

Server Details

Pro-wrestling news, TV schedules, live events, videos and podcasts. Read-only, no auth.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 6 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct aspect of pro-wrestling: event details, TV schedule, live events, news, podcasts, and videos. No two tools have overlapping purposes.

Naming Consistency4/5

Tools use a mix of 'get_' for single-item retrieval and 'list_' for collections, but 'get_tv_schedule' breaks the pattern as it returns a list. Still, the naming is generally clear and predictable.

Tool Count5/5

Six tools is an appropriate scope for a wrestling news and event aggregator. Each tool covers a specific need without being overwhelming or too sparse.

Completeness5/5

The tool surface covers events, schedule, news, podcasts, and videos—the core needs for a wrestling information service. No obvious gaps are present for the stated purpose.

Available Tools

6 tools
get_eventGet EventA
Read-onlyIdempotent
Inspect

Get the full detail for one pro-wrestling event by its unique id, including venue and card preview. Get the id from get_tv_schedule or list_live_events first.

ParametersJSON Schema
NameRequiredDescriptionDefault
uniqueIdYesThe event's unique id, as returned by get_tv_schedule or list_live_events.
Behavior4/5

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

Annotations (readOnlyHint, openWorldHint, idempotentHint) already declare safety and idempotency. The description adds useful behavioral context: it returns full detail including venue and card preview. No contradictions.

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 clear, front-loaded sentences with no wasted words. Every sentence contributes essential information.

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 get tool with one parameter, strong annotations, and no output schema, the description covers the purpose and source of the id. It does not describe return format, but that is acceptable given the simplicity.

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?

Schema coverage is 100% and the parameter description in the schema explains the unique id. The tool description does not add new meaning beyond what the schema already provides, so baseline 3 is appropriate.

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 the tool gets full detail for one event by unique id, specifying it includes venue and card preview. It distinguishes from siblings (get_tv_schedule, list_live_events) that return lists, by indicating it retrieves details for a single known entity.

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 explicitly advises obtaining the id from get_tv_schedule or list_live_events first, providing clear context. It lacks explicit 'when not to use' guidance, but the prerequisite is well-stated.

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

get_tv_scheduleGet Tv ScheduleA
Read-onlyIdempotent
Inspect

Get the pro-wrestling TV schedule: which shows air on which days, on which channels. Use this to answer "what is on tonight/this week".

ParametersJSON Schema
NameRequiredDescriptionDefault
companyNoFilter to one promotion by its code, e.g. "wwe", "aew". Omit for all promotions.
numDaysNoHow many days forward from startDate to include (1-96). Defaults to 7.
singleDayNoReturn only shows airing on startDate itself. Defaults to false.
startDateNoDay to start from, as YYYY-MM-DD. Defaults to today.
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint. The description confirms it's a read operation but adds no new behavioral traits beyond 'get the schedule'.

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 sentences with zero waste. First sentence defines purpose, second gives usage context. Well front-loaded.

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?

Adequate for a read-only scheduled tool with optional parameters. No output schema, but the description is clear enough given the annotations and parameter richness.

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?

Schema provides descriptions for all 4 parameters, and the tool description does not add further meaning beyond what's in the schema. Baseline 3.

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?

Clearly states the tool retrieves the pro-wrestling TV schedule, specifying shows, days, and channels. Distinguishes itself from siblings like 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 tells the agent to use it for answering 'what is on tonight/this week', but does not mention when not to use or suggest alternatives.

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

list_live_eventsList Live EventsA
Read-onlyIdempotent
Inspect

List upcoming live pro-wrestling events (house shows and pay-per-views) with their venues. Use this to answer "is anything coming to my area".

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoHow many events to return (1-50). Defaults to 15.
stateNoFilter to a state or region, e.g. "Texas".
companyNoFilter to one promotion by its code, e.g. "wwe", "aew". Omit for all promotions.
startDateNoDay to start from, as YYYY-MM-DD. Defaults to today.
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint. The description adds behavioral context: it lists only upcoming events, includes house shows and pay-per-views, and returns venue information. This goes 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 sentences, no wasted words. First sentence states purpose and content, second gives a concrete use case. Efficient and front-loaded.

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 read-only list tool with 100% schema coverage and annotations, the description is mostly complete. It explains what is returned and when to use it. A slight gap: it does not explicitly state the tool returns a list, but this is clear from the name and schema.

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?

Schema coverage is 100% with parameter descriptions. The tool description adds no extra meaning beyond what the schema provides (e.g., limit, state, company, startDate). Baseline 3 is appropriate.

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 the tool lists upcoming live pro-wrestling events with subtypes (house shows and pay-per-views) and includes venues, distinguishing it from sibling tools like get_event (single event details) and get_tv_schedule (TV schedule).

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 provides a specific use case ('is anything coming to my area'), guiding when to use this tool. It implicitly excludes alternatives (e.g., details from get_event, TV from get_tv_schedule) but does not explicitly list exclusions.

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

list_newsList NewsA
Read-onlyIdempotent
Inspect

List recent pro-wrestling news headlines aggregated by The Daily Smark, featured and newest first. Returns markdown links back to the original publisher, never the full article text. Keep the links in your answer so the reader can open the story. Covers roughly the last 30 days.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number for paging through older headlines. Starts at 1.
limitNoHow many headlines to return (1-50). Defaults to 15.
companyNoFilter to one promotion by its code, e.g. "wwe", "aew", "nxt", "njpw", "tna", "roh", "stardom", "mlw". Omit for all promotions.
showSpoilersNoInclude headlines that give away match results. Defaults to false, so leave it off unless the user has explicitly asked for results or spoilers.
Behavior4/5

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

Adds context beyond annotations: returns markdown links (not full text), covers last 30 days, ordering by featured then newest. No contradiction with readOnlyHint, openWorldHint, or idempotentHint.

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?

Concise, well-structured, front-loaded with main purpose. Every sentence adds value without waste.

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?

Fully describes return format, time range, ordering, and filtering options. No output schema exists, but description compensates adequately.

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 100%, but the description adds value by clarifying when to use showSpoilers (only on explicit request). This extra guidance improves parameter semantics above the baseline of 3.

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 the tool lists recent pro-wrestling news headlines from The Daily Smark, with clear output details (markdown links, no full text). It is distinct from sibling tools like get_event or list_videos.

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?

Provides guidance on keeping links in answers and on using the showSpoilers parameter only when explicitly requested. Does not explicitly compare to siblings, but the purpose is unique enough to avoid confusion.

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

list_podcastsList PodcastsA
Read-onlyIdempotent
Inspect

List recent pro-wrestling podcast episodes featured by The Daily Smark. Returns markdown links back to the episode. Keep the links in your answer so the reader can go and listen.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoHow many episodes to return (1-50). Defaults to 15.
Behavior4/5

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

Annotations already declare readOnly, openWorld, and idempotent. Description adds that the tool returns markdown links and instructs to keep them, providing useful behavioral context 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 sentences, front-loaded with purpose, no wasted words. Every sentence adds value.

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 only one optional parameter and no output schema, the description is fully complete. It explains what the tool does, what it returns, and gives a usage instruction.

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?

Schema coverage is 100% for the single parameter 'limit', so the description adds no new meaning. Baseline 3 is appropriate as the schema already documents the parameter.

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?

Clearly states it lists recent pro-wrestling podcast episodes from The Daily Smark and returns markdown links. Distinguishes from sibling tools like list_news and list_videos by specifying the content type and source.

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 describes when to use it (to get recent podcast episodes) and instructs to keep links in the answer. Does not explicitly state when not to use, but the context is clear and siblings provide implicit alternatives.

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

list_videosList VideosA
Read-onlyIdempotent
Inspect

List recent pro-wrestling videos collected by The Daily Smark, featured and newest first. Returns markdown links back to the original channel. Keep the links in your answer so the reader can watch the video.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number for paging through older videos. Starts at 1.
limitNoHow many videos to return (1-50). Defaults to 15.
companyNoFilter to one promotion by its code, e.g. "wwe", "aew". Omit for all promotions.
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint. The description adds useful behavioral context: returns markdown links and instructs to keep them in answers. No contradictions. Could be richer on pagination details but sufficient.

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 sentences, front-loaded purpose, zero waste. Every word earns its place.

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?

With 0 required parameters, no output schema, and strong annotations, the description covers domain, sorting, and output usage. Missing explicit pagination behavior but page parameter is standard.

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?

Schema coverage is 100% so parameters are well-documented. The description does not add additional meaning beyond the schema (e.g., default sorting is implicit not tied to a parameter). Baseline 3 is appropriate.

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 states it lists 'pro-wrestling videos collected by The Daily Smark' and mentions sorting order and return format. It clearly distinguishes from sibling tools which cover events, schedules, news, and podcasts.

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 usage for fetching video lists but does not explicitly state when to use versus alternatives. No exclusions or when-not-to-use guidance is provided, though sibling names offer differentiation by content type.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Provides read-only access to the Sleeper Fantasy Sports API for league info, rosters, matchups, drafts, transactions, and player data.
    18
    31
    1
    MIT
  • F
    license
    -
    quality
    C
    maintenance
    Provides comprehensive sports intelligence including live scores, standings, schedules, betting odds, news, highlights, and more via SSE transport.
  • A
    license
    A
    quality
    B
    maintenance
    Live space data for AI agents: upcoming rocket launches (SpaceX, NASA, Rocket Lab…), ISS pass predictions for any city or coordinates (live SGP4), and launch news in 7 languages. Read-only, no auth, no API key. Backed by gocosmik.com — the free real-time 3D satellite tracker.
    3
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Provides access to public Mastodon data including trending posts, account profiles, and public timeline via mastodon.social without authentication.
    15
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources