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
Tool Definition Quality
Average 4.1/5 across 6 of 6 tools scored. Lowest: 3.4/5.
Each tool targets a distinct resource: event details, TV schedule, live events, news, podcasts, and videos. The descriptions clearly differentiate them, and any overlap (e.g., get_event vs list_live_events) is explicitly resolved by referencing earlier steps.
All tools follow a consistent verb_noun pattern: get_ for single resources and list_ for collections. This makes the API predictable and easy for agents to select the correct tool.
Six tools is well-scoped for a content aggregation server covering news, media, and events. Each tool earns its place without excess or redundancy, fitting the typical recommended range.
The tool surface covers the full consumption workflow: browsing schedules, discovering events, retrieving event details, and accessing news, podcasts, and videos. There are no obvious dead ends for the read-only purpose of this server.
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 EventsBRead-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" — pass latitude and longitude when you have them to narrow the list to a 50 mile radius, or "state" when you only know the region.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many events to return (1-50). Defaults to 15. | |
| state | No | Filter to a state, province or country, named either way: "TX" or "Texas", "Ireland". Use this when you only know the region the person named — it is the right filter for a place name, not latitude/longitude. | |
| 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, openWorldHint, and idempotentHint, so the description does not need to repeat those. It adds that events are 'live' and shown 'with their venues,' which is minor context. No contradiction with annotations, but also no substantial behavioral disclosure beyond what the annotations and schema already imply.
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?
The description is only two sentences, front-loaded with the core purpose and a brief usage tip. It is appropriately terse for a simple listing tool, with no unnecessary filler.
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 operation with a fully described schema, the description covers the essentials: what it lists (upcoming events), the scope (live pro-wrestling, house shows/PPVs), and venue inclusion. However, the misleading lat/lon reference and lack of mention of default behavior (e.g., sorting, pagination) leave some gaps, though annotations and schema fill in most needs.
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?
The tool description itself does not elaborate on any actual parameters; instead, it references non-existent latitude and longitude filters, which actively misleads. Schema descriptions cover 100% of parameters, so a baseline of 3 is warranted, but the presence of incorrect parameter guidance reduces the value of the description's contribution.
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 opens with 'List upcoming live pro-wrestling events (house shows and pay-per-views) with their venues,' using a specific verb and resource that clearly states what the tool does. It distinguishes itself from sibling tools like 'get_event' (singular) and 'get_tv_schedule' by focusing on listing live events.
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 tells when to use the tool ('is anything coming to my area') and how to filter, but it instructs passing 'latitude and longitude' parameters that do not exist in the input schema. This critical error makes the guidance misleading and could cause an agent to attempt invalid calls, undermining the usefulness of the usage instructions.
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.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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.18711MIT
- FlicenseNot gradedqualityCmaintenanceProvides comprehensive sports intelligence including live scores, standings, schedules, betting odds, news, highlights, and more via SSE transport.
- AlicenseNot gradedqualityCmaintenanceProvides access to public Mastodon data including trending posts, account profiles, and public timeline via mastodon.social without authentication.9MIT
- FlicenseAqualityCmaintenanceEnables read-only access to Sleeper fantasy sports data, including users, leagues, rosters, matchups, transactions, drafts, players, trending activity, playoff brackets, traded picks, and sport state via MCP tools.18