The Daily Smark
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.
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.
Tool Definition Quality
Average 4.2/5 across 6 of 6 tools scored.
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.
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.
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.
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 toolsget_eventGet EventARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| uniqueId | Yes | The event's unique id, as returned by get_tv_schedule or list_live_events. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 ScheduleARead-onlyIdempotentInspect
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".
| Name | Required | Description | Default |
|---|---|---|---|
| company | No | Filter to one promotion by its code, e.g. "wwe", "aew". Omit for all promotions. | |
| numDays | No | How many days forward from startDate to include (1-96). Defaults to 7. | |
| singleDay | No | Return only shows airing on startDate itself. Defaults to false. | |
| startDate | No | Day to start from, as YYYY-MM-DD. Defaults to today. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 EventsARead-onlyIdempotentInspect
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".
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many events to return (1-50). Defaults to 15. | |
| state | No | Filter to a state or region, e.g. "Texas". | |
| company | No | Filter to one promotion by its code, e.g. "wwe", "aew". Omit for all promotions. | |
| startDate | No | Day to start from, as YYYY-MM-DD. Defaults to today. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 NewsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for paging through older headlines. Starts at 1. | |
| limit | No | How many headlines to return (1-50). Defaults to 15. | |
| company | No | Filter to one promotion by its code, e.g. "wwe", "aew", "nxt", "njpw", "tna", "roh", "stardom", "mlw". Omit for all promotions. | |
| showSpoilers | No | Include headlines that give away match results. Defaults to false, so leave it off unless the user has explicitly asked for results or spoilers. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 PodcastsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many episodes to return (1-50). Defaults to 15. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 VideosARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for paging through older videos. Starts at 1. | |
| limit | No | How many videos to return (1-50). Defaults to 15. | |
| company | No | Filter to one promotion by its code, e.g. "wwe", "aew". Omit for all promotions. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityBmaintenanceProvides read-only access to the Sleeper Fantasy Sports API for league info, rosters, matchups, drafts, transactions, and player data.18311MIT
- Flicense-qualityCmaintenanceProvides comprehensive sports intelligence including live scores, standings, schedules, betting odds, news, highlights, and more via SSE transport.
- AlicenseAqualityBmaintenanceLive 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.3MIT
- Alicense-qualityCmaintenanceProvides access to public Mastodon data including trending posts, account profiles, and public timeline via mastodon.social without authentication.15MIT