Skip to main content
Glama
wyverns76-J

sports-pulse-mcp

by wyverns76-J

get_upcoming_fixtures

Retrieve upcoming matches for a team by name, including Korean aliases that map to English clubs.

Instructions

특정 팀의 다음 경기 일정을 조회합니다. 한국어 팀 이름도 지원 (손흥민 → 토트넘 자동 변환).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo가져올 경기 수 (기본값: 5)
team_nameYes팀 이름 (한국어/영어 모두 가능). 예: 손흥민, 토트넘, Tottenham, 맨시티

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/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 full burden. It usefully discloses a non-obvious behavior (Korean team names auto-converted, e.g. 손흥민 → 토트넘), but says nothing about return format, data freshness, or rate limits.

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 tight sentences with the core action front-loaded and the notable Korean-name behavior appended without waste.

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

Completeness3/5

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

With no annotations and no output schema, the description should do more: it never explains what a returned fixture contains or how count interacts with results. Adequate for selection, thin for correct invocation.

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 the schema already documents both parameters. The description's Korean-name note and the example largely duplicate the schema's own description, adding only marginal value; baseline 3 applies.

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?

States a specific verb+resource: retrieves a specific team's upcoming fixture schedule. The word '다음 경기' (upcoming) implicitly separates it from get_recent_results and get_today_fixtures, but no sibling is named explicitly.

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?

Usage is implied (want the future schedule of one team) but there is no explicit when-to-use/when-not guidance or reference to alternatives like get_today_fixtures or get_live_scores, so the agent must infer boundaries.

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