Skip to main content
Glama
meilSop
by meilSop

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation1/5

    Each unique functionality is duplicated with two nearly identical tools (e.g., get_api_list and yapi_list_interfaces). The descriptions are exactly the same, leaving no way for an agent to distinguish between them, which will cause misselection.

    Naming Consistency2/5

    Naming is inconsistent: some tools use a 'get_' prefix (get_api_list, get_api_detail), while others use a 'yapi_' prefix with a different verb order (yapi_list_interfaces, yapi_get_interface_detail). There is no discernible uniform pattern.

    Tool Count2/5

    While the raw count is 6, this is inflated by exact duplicates. The server effectively exposes only 3 unique tools, and the redundancy suggests a lack of curation, making the count feel padded rather than purposeful.

    Completeness2/5

    The tool surface is limited to read-only operations: list, detail, and search. There are no create, update, or delete operations, which are essential for a complete API management workflow, leaving significant gaps for agent tasks.

  • Average 3.4/5 across 6 of 6 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 2 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
  • This repository is licensed under ISC License.

  • 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.json to 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

  • Behavior2/5

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

    With no annotations provided, the description carries the full burden. It discloses that the search uses YApi's built-in search API and matches names/paths, but it does not mention whether this is read-only, require authentication, or return paginated/summarized results. For a search operation, important behavioral context like result limits or scoping is missing.

    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?

    The description is a single, concise sentence that front-loads the main purpose and key behavioral detail (matching name and path). No fluff or repetitive content.

    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?

    For a simple search tool, the description gives enough to understand the core function, but gaps remain: projectId is unexplained, there is no mention of output format or error behavior, and confusion with sibling search tools is unresolved. Without an output schema, a bit more detail would improve completeness.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema coverage is only 50%; the keyword parameter has a description, but projectId is undocumented. The tool description adds no new meaning for keyword—it essentially repeats the schema's description. It provides zero explanation of projectId's purpose or constraints, so parameters remain unclear for half the inputs.

    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?

    The description clearly states the tool searches YApi interfaces by keyword, matching interface names and paths. This is a specific verb+resource+scope, and it distinguishes from list/detail siblings by focusing on keyword search. However, it does not explicitly differentiate from the sibling yapi_search_interfaces, which may serve the same purpose.

    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: use this tool when you need to find interfaces by keyword rather than listing all or fetching details. However, there is no explicit guidance on when to use this versus the similar sibling yapi_search_interfaces, nor any mention of prerequisites or alternatives.

    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?

    With no annotations, the description carries the full burden. It discloses that it uses YApi's built-in search API and matches name/path, adding useful behavioral context. But it omits return format, pagination, or read-only confirmation.

    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?

    One concise sentence front-loads the core action and tacks on specific search scope. Every phrase earns its place.

    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?

    For a low-complexity search tool, the purpose and search scope are covered. However, without an output schema, projectId semantics, or usage guidance, there are notable gaps for an agent to invoke correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The description reiterates the keyword's meaning already in the schema but adds no new parameter semantics. The optional projectId parameter is undocumented in both the schema and the description.

    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?

    The description clearly states the tool searches YApi interfaces by keyword and specifies that it matches interface name and path. This differentiates it from list/detail siblings, though not from the sibling 'search_api'.

    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 the tool is for keyword-based search by stating '根据关键字搜索', providing clear context for when to use it. However, it does not explicitly exclude alternatives or mention when to prefer sibling tools like get_api_list or search_api.

    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?

    With no annotations, the description carries full burden. It discloses that the operation is a read ('获取') and mentions return content (request info, response structure), but does not clarify authentication needs, error behavior, or any limitations. This leaves significant behavioral aspects undisclosed.

    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?

    The description is a single, concise sentence that front-loads the primary action and purpose. No wasted words; all content is relevant.

    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 single-parameter tool, the description adequately covers the main purpose and return content. However, the phrase '等完整内容' is vague and does not enumerate specific fields, and there is no output schema to compensate. Still, it is complete enough for basic usage.

    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 'id' parameter, which is already described as '接口 ID'. The description adds context by explaining it fetches by ID, but does not provide additional semantics beyond the schema.

    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's function: '根据接口 ID 获取 YApi 接口详情' (get YApi interface detail by interface ID), and specifies what it returns ('包含请求信息、响应结构等完整内容'). This distinguishes it from sibling tools that list or search interfaces, though it does not explicitly differentiate from 'get_api_detail'.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does 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. It lacks explicit context such as 'use this after obtaining an ID from a list tool' or 'for listing use get_api_list'. The usage is only implied by the ID parameter.

    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 bears full responsibility for behavioral disclosure. It mentions the environment variable fallback, but does not state whether the operation is read-only, requires authentication, or how results are returned. This leaves notable gaps for a list operation.

    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?

    The description is two concise sentences. The first sentence front-loads the primary purpose, and the second adds a useful parameter fallback note. Every word earns its place with no redundancy.

    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?

    This is a simple tool with one optional parameter and no output schema. The description covers purpose and parameter behavior, which is adequate for basic use. However, it omits details such as authentication requirements, error behavior, and return format, which would be needed for full completion.

    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?

    The schema only provides the type and minimum for projectId, with no description. The description adds meaningful context by explaining that projectId is optional and falls back to YAPI_PROJECT_ID when omitted, including the precedence behavior. This goes beyond the schema.

    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?

    The description clearly states the tool retrieves the complete interface list for a specified YApi project, which is a specific verb+resource+scope. It distinguishes itself from detail and search siblings, though it does not explicitly differentiate from the similar-sounding 'get_api_list'.

    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 context: you use this to get all interfaces of a YApi project, with projectId optionally coming from an environment variable. However, it does not name alternative tools like search_api or provide explicit when-to-use/when-not-to-use 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?

    With no annotations, the description carries the transparency burden. It discloses that the result includes request information and response structure, but does not explicitly state that this is a read-only operation or address permissions, errors, or other behavioral traits.

    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?

    The description is a single, focused sentence that states the key information upfront without unnecessary words or repetition.

    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?

    For a simple single-parameter getter, the description includes some output details (request info, response structure) but lacks complete return value explanation or disambiguation from similar sibling tools. Given no output schema, the description could be more thorough.

    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?

    The schema already provides 100% coverage for the single 'id' parameter with its description. The description only reinforces that the ID is used for lookup, adding no new semantic details beyond the schema.

    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?

    The description clearly states it retrieves YApi interface details by interface ID, specifying the resource and action. However, it does not distinguish itself from the sibling tool 'yapi_get_interface_detail', which appears to serve the same purpose.

    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 usage is implied: one should use this tool when they have an interface ID and need its details. There is no explicit guidance on when not to use it or mention of alternative tools, leaving differentiation to the agent.

    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?

    With no annotations provided, the description carries the full burden. It adds the environment variable fallback and the 'complete list' scope, but does not disclose response format, pagination, authentication, or side effects. For a read-only list tool the risk is low, but the description remains under-specified.

    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?

    The description is a single compact sentence that conveys the tool's purpose and a key operational detail without any wasted words.

    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 list-with-optional-filter tool, the description covers what it returns, the project scope, and the fallback behavior. It lacks response structure details, but that is acceptable given no output schema and the straightforward nature of the operation.

    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?

    There is one parameter with 0% schema coverage, so the description compensates by noting projectId is optional and that YAPI_PROJECT_ID is used as a fallback. This adds useful meaning, but it does not elaborate on the parameter's type or source beyond the schema's exclusiveMinimum hint.

    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?

    The description clearly states the tool fetches the complete interface list for a specified YApi project, using a specific verb and resource. It distinguishes from search/detail siblings by emphasizing completeness, though it does not explicitly contrast with the similarly named yapi_list_interfaces.

    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 clear context: use this tool when you need the full interface list for a project. It also clarifies the behavior when projectId is omitted, falling back to YAPI_PROJECT_ID, which guides invocation. It does not mention explicit alternatives or exclusions, so it stops short of a 5.

    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

mcp-yapi-server MCP server

Copy to your README.md:

Score Badge

mcp-yapi-server MCP server

Copy to your README.md:

Latest Blog Posts

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/meilSop/mcp-yapi-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server