liga-record-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool has a clear and distinct purpose. check_transfer vs check_market_transfer and search_squad vs search_market are differentiated by their descriptions, preventing confusion. The others (get, validate, simulate, project) are uniquely scoped.
Naming Consistency5/5All tool names follow a consistent verb_noun pattern (check_transfer, get_squad, search_market, etc.), using lowercase with underscores. No mixed conventions or inconsistent verb usage.
Tool Count5/5Nine tools cover the core operations of a fantasy football assistant without redundancy. Each tool serves a distinct function, and the count is neither too sparse nor overwhelming for the domain.
Completeness4/5The toolset covers reads, searches, validation, simulation, and pricing projections, but lacks an explicit 'execute transfer' or 'update squad' action. However, given the assistant's advisory role, this is a minor gap that doesn't hinder typical workflows.
Average 3.8/5 across 9 of 9 tools scored. Lowest: 3/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 7 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.
If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.
MCP servers without a LICENSE cannot be installed.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description must carry behavioral context. It usefully discloses that low scores (1, 2, 3) result in no price movement and the tool should say so. However, it does not clarify side effects, read-only nature, or result shape beyond that edge case.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and every sentence contributes information: one states the tool's subject matter and one provides the important low-score edge case. There is no redundant schema repetition or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The input schema is small and an output schema exists, so the description does not need to fully document return values. Still, it relies on an external regulation reference (§12.3-§12.4) and does not fully state what movement looks like for scores outside 1-3, leaving part of the behavior implicit.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics for `round_points` by framing it as the player's score and explaining the 1-3 no-movement boundary. `player_id`, however, is still only described by its name and schema type.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose3/5Does the description clearly state what the tool does and how it differs from similar tools?
The description conveys that the tool is related to a player's price/quote behavior for a given `round_points` score, but it never states an explicit action such as 'calculate', 'project', or 'returns'. The phrase 'a player's quote' is also slightly ambiguous, so the purpose is clear only after reading the tool name and context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given for when to choose this tool over siblings or when to avoid it. The note about scores 1-3 being 'no movement' is an output/behavior caveat, not selection guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses a meaningful behavioral trait: the data carries an `as_of` timestamp, indicating the squad data may be stored and not live. This warns the agent not to present it as current, which is valuable context beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with two short sentences. The first sentence is a noun phrase but efficient. The second sentence adds the crucial freshness caveat. It loses one point because the first sentence is grammatically incomplete, though it conveys the essential scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read tool with zero parameters and an output schema, the description sufficiently covers the content (23 players with money) and the main behavioral nuance (as_of freshness). It does not need to explain return values since an output schema exists. It is complete enough for the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so per the rubric the baseline is 4. The description mentions `as_of` but that is clearly a field in the output data, not a parameter. No additional parameter semantics are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose3/5Does the description clearly state what the tool does and how it differs from similar tools?
The description names the resource (the 23 players under contract) and the associated money, but it lacks an explicit verb and doesn't distinguish from sibling tool search_squad. The tool name 'get' implies retrieval, but the description itself is a noun phrase rather than a clear action statement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like search_squad or get_player. The description does not mention any exclusions, prerequisites, or alternative scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- 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 of behavioral disclosure. It usefully explains that bench order is semantically meaningful and that output is authoritative, which are important implementation details. However, it is silent on whether this is side-effect-free, what permissions are needed, how errors are surfaced, or what validation categories are returned, leaving some behavioral risk opaque.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is only three sentences: a clear opening goal, a critical bench-order constraint, and a decisive authority note. Every sentence carries operational value, and the most important information is front-loaded. No fluff or duplicated schema content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is enough to understand the basic validation task and the key bench-order semantics, and an output schema is present to document return values. But without annotations or explanations of the referenced regulation sections, and with only partial parameter coverage, it is adequate rather than comprehensive. An agent might still hesitate on when to prefer this over simulate_autosubs or how broad its authority is.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the semantics of the parameters. It adds meaning mainly for 'bench' by explaining order importance, and it indirectly references the starters/formation count. It gives no semantic guidance for 'captain' or 'coach_id', which remain underspecified beyond their schema names and types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description says 'Check a team sheet against §6.13, §6.17 and §10.3(l)', which gives a specific verb and resource for the tool. It clearly distinguishes validation from sibling tools like search_squad or simulate_autosubs, though it does not explicitly contrast with them. The legal-section references are cryptic, but the core action is not ambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The statement 'Bench order matters — the first substitute listed is the first to come on' provides concrete guidance for how the tool interprets its input, and 'This is authoritative: trust it over your own count' tells the agent when to rely on the result. It does not name alternative tools explicitly, but it gives clear context that prevents misuse of the bench ordering and formation-count semantics.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/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 says 'Check' and references rules, implying a read-only validation, but it does not disclose side effects, error behavior, or what a successful/failed check returns. The 'step 4' note is development context rather than behavioral transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences, front-loaded purpose, no filler. Each sentence adds either purpose, parameter context, or an enum clarification.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 7 parameters and no annotations, and the description covers the manual-input rationale and window values, but it omits out_id/transfers_available semantics and explicit alternative guidance. The presence of an output schema reduces the need to describe return values, but the remaining gaps keep it from being complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It usefully explains the in_* parameters as manual inputs and enumerates window values (in_season, closed/reopened). However, out_id and transfers_available are left unexplained, and no units or formats are given for in_value or in_position.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The opening sentence 'Check one swap against §6.4 and §6.8' names a specific verb, object, and rule scope. The note that the incoming player is described by hand because there is no market data yet distinguishes this from the sibling check_market_transfer, which presumably uses market lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies this tool is for manually described incoming players when no market data exists, and mentions that step 4 will replace these arguments with a lookup. It does not explicitly name check_market_transfer or state when not to use the tool, so it stops short of full exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- 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 of behavioral disclosure. It explains that the budget arithmetic uses the live market quote, which is useful behavioral context. However, it does not mention whether the operation is read-only, what happens on invalid ids, or any other side effects or requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded: the first sentence states the core purpose, and the second paragraph adds only essential differentiating detail. Every sentence earns its place with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, the description covers the main purpose, parameter roles, and the key difference from check_transfer. An output schema exists, so return-value details are not required. It could be slightly more complete by mentioning prerequisites or validation behavior, but it is largely sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description compensates by stating 'Both are player ids' and clarifying that out_id refers to the squad player and in_id refers to the market player. This adds meaning beyond the bare schema, though it does not detail id formats or how to obtain valid ids.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Check a real transfer: one squad player out, one market player in.' It uses a specific verb and resource, and explicitly distinguishes itself from the sibling tool check_transfer by noting the incoming player's price and position come from the live market.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear usage context by contrasting with check_transfer: this tool should be used when the incoming player's price and position should come from the live market rather than being hand-described. It does not explicitly state exclusions or alternative tools beyond this comparison, but the guidance is clear enough for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It details key rules: substitutes enter in bench order, same position only, maximum three, and the captain's armband passes if the captain is replaced. It also defines 'unavailable' explicitly, which is valuable constraint information.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the main purpose, and every clause adds essential rule information. There is no fluff or unnecessary repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is comprehensive for a simulation tool: it covers the substitution algorithm, constraints, and a definition of unavailable. Given that an output schema exists, return values need not be described. Edge cases like insufficient bench players are not mentioned, but the core behavior is well covered.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for parameter meaning. It does define 'unavailable' and explains how bench order and captain are relevant, but it does not individually describe the 'starters' or 'bench' arrays beyond their roles implied by the rule. The captain parameter is only indirectly addressed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description is specific and action-oriented: 'Apply the §11 automatic substitutions to a team sheet.' This clearly states the tool's function and the resource it operates on, and it is distinct from sibling tools like transfer, pricing, and squad management functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies a clear use case—when a team sheet has unavailable starters and autosubs should be applied—but it does not explicitly compare to alternatives or say when not to use it. There is no mention of other tools for similar scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/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 discloses key behaviors: partial and accent-insensitive matching, and the critical behavior of returning multiple candidates when ambiguous rather than guessing. This is valuable transparency for an agent deciding whether to act on the result.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose, and the second sentence adds critical behavioral context. Every word earns its place; no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no nested objects) and the presence of an output schema, the description is quite complete. It covers the query semantics and the ambiguity behavior. It could mention what happens if no match is found (returns null? empty array?), but the output schema might cover that, and the description's focus on ambiguity is the most important edge case.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has only one parameter 'query' with 0% description coverage, but the description explains that the query can be an id or a name, and that it supports partial and accent-insensitive matching. This adds meaning beyond the bare schema, but doesn't specify the format for id vs name (e.g., how to distinguish them) or any constraints on the query string.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool finds one squad player by id or by name, with partial and accent-insensitive matching. It distinguishes itself from siblings like get_squad (which likely returns the whole squad) and search_squad (which likely searches more broadly), by specifying it targets a single player and handles ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: when you need a specific player by id or name, and it explicitly warns against guessing when ambiguous. It doesn't explicitly name alternatives like search_squad for broader searches, but the context of 'one squad player' and the ambiguity handling provides clear usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses that search is limited to the 23 owned players, defines position values, and explains the non-market scope. While it does not explicitly state read-only behavior or absence of side effects, this is implied by the filter/search nature. It also references 'step 4' without elaboration, which is a minor gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two concise sentences. The first sentence front-loads the core purpose, and the second adds critical scope differentiation without any waste. Every clause contributes value, making it highly readable and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 4 parameters and no annotations, so the description needs to provide substantial context. It covers the scope and the position enum, but leaves three parameters unexplained and references an undefined 'step 4' in the workflow. The presence of an output schema reduces the need to describe return values, but the missing parameter semantics creates a noticeable gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It only documents the `position` parameter with allowed values (GK, DEF, MID, FWD). The other three parameters (`club`, `max_value`, `min_points`) are left completely undocumented in both schema and description, leaving their semantics and units unclear.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Filter the squad,' which is a specific verb+resource statement. It further clarifies the scope by stating it searches the 23 owned players and explicitly contrasts this with the transfer market, thereby distinguishing it from sibling tools like search_market.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly indicates this tool is for searching the owned squad, not the transfer market, and even notes that the market requires the live source added in step 4. This provides explicit when-to-use and when-not-to-use guidance, along with context for why the transfer market is excluded.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and excels at it. It discloses that the tool reads the live site ('reads the live site'), is the only tool whose results change without file edits, and includes a 15-minute cache. It also explains the behavioral implication of max_owned_percent (differentials). This is rich, actionable context beyond any structured data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: it opens with purpose, then details key parameters, and closes with behavioral notes. Every sentence contributes meaning without repetition or fluff. It front-loads the core purpose and efficiently uses three short paragraphs.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has an output schema (so return values are covered) and 7 parameters, the description covers all essential aspects: purpose, required parameter, key parameter semantics, live nature, caching, and a warning about option impact. It omits details like result ordering or filter logic, but these are likely covered by the output schema and parameter names. It is sufficiently complete for a search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must add meaning. It effectively explains the two non-obvious parameters: position (required, with enumeration and consequence of omission) and max_owned_percent (with reasoning for its use). Other parameters (club, name, limit, max_value, min_points) are self-explanatory from their names and types, so additional elaboration is reasonably forgone. The added value for the two complex parameters brings this above baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it searches the entire market ('Search the whole Liga Record player market') and explicitly contrasts it with squad searches ('not just the squad'), effectively distinguishing it from the sibling tool search_squad. The verb 'search' and resource 'market' are specific, and the phrase 'not just the squad' provides differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool ('whole market' vs 'squad') but does not explicitly name alternatives or state when not to use it. It also provides a critical usage instruction ('position is required') and hints at the utility of max_owned_percent for differentials, but lacks clear exclusion criteria or comparison with sibling tools like search_squad.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/manuelcralves/liga-record-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server