Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.4.0

  • Disambiguation5/5

    Each tool targets a distinct resource: formatting citations, fetching reference examples, and searching API docs. There is no overlap in their purposes, and the descriptions make the appropriate use case for each clear.

    Naming Consistency5/5

    All tool names follow a consistent 'get_' prefix followed by a noun (citation, reference, api_doc). The naming pattern is uniform and predictable, making it easy to infer functionality.

    Tool Count5/5

    With 3 tools covering citations, examples, and API documentation, the server is well-scoped for its purpose as a COPT reference helper. The small count is appropriate because each tool provides distinct, essential functionality.

    Completeness4/5

    The server covers the main reference needs: getting citations, example code for specific problem types, and API documentation search. Minor gaps exist (e.g., only Python language support, no tool to list all available options), but these are acceptable for the stated domain.

  • Average 4.2/5 across 3 of 3 tools scored.

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

    • No community issues in the last 6 months
    • No commit activity data available
    • 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 MIT 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?

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It only describes the parameter and its values, without stating that this is a read-only operation, any permissions required, or side effects. The name 'get' implies read-only behavior, but the description does not confirm or elaborate on it.

    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 extremely brief and front-loaded with the main purpose. The Args block is clear and each element earns its place, with no unnecessary words or vague explanations.

    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?

    Given the simplicity of the tool (single parameter, output schema present), the description covers the essential purpose and parameter semantics sufficiently. It lacks mention of error handling or relationship to sibling tools, but these are not critical for such a simple retrieval tool.

    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 describes the parameter as '引用类型' (citation type) with no allowed values. The description adds concrete enum values ('word' and 'bibtex') and their intended use cases, which is valuable semantic information that goes 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 states '获取COPT的引用格式' (Get COPT citation format), which is a specific verb and resource, and lists the supported formats. This clearly distinguishes it from the sibling tools 'get_reference' and 'get_api_doc'.

    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 gives concrete guidance on the citation_type parameter values ('word' for Word documents, 'bibtex' for BibTeX files), which is helpful. However, it does not mention when to use this tool over get_reference or get_api_doc, so the usage context is only implied by the tool name and purpose.

    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?

    The description does not disclose behavioral traits beyond the purpose itself. With no annotations provided, the description carries the full burden. It implies a read-only operation (get), but does not mention whether it returns code snippets, requires network access, or has any side effects. A basic 3 is given because the non-destructive nature is evident from the tool name.

    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 concise and well-structured: a single lead sentence stating the purpose, followed by a clear Args list with bullet points for allowed values. Every sentence earns its place, with no redundant information.

    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?

    The description covers all necessary context for a two-parameter tool: purpose, when to use, and parameter values. An output schema exists, so return value details are not needed. It could be slightly more complete with an explicit mention that the example includes code, but overall it is fairly complete.

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

    Parameters5/5

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

    While the schema provides generic descriptions for both parameters, the description adds significant value by enumerating all supported values for problem_type (LP, MIP, SOCP, NLP) and language (Python). This goes well beyond the schema's '求解问题类型' and 'API接口语言', making parameter meaning fully explicit.

    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 purpose: to retrieve reference examples for a specified problem type and language in COPT. The verb '获取' (get) combined with the resource '参考示例' (reference examples) and specific parameters (problem_type, language) makes it specific and distinct from sibling tools like get_citation and get_api_doc.

    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 usage context by recommending calling this tool before solving a problem with COPT. This tells the agent when to use it, but it does not explicitly mention alternatives or when not to use it, which would warrant a 5.

    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 full burden. It explains the retrieval and re-ranking behavior, the distinction between recall_num and return_num (with max values), and supported input types (natural language and code snippets). It doesn't state read-only behavior explicitly, but the search/ranking nature and absence of side effects is implied. It doesn't cover error cases or response format, but the output schema covers return structure.

    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 well-structured with a front-loaded purpose sentence, a clear 'Args:' section with bullet-point examples, and a concise 'Hints:' section. Each part adds value; no filler or redundancy. The formatting aids readability and quick comprehension.

    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?

    The tool is a search/retrieval operation with 5 parameters, all covered in the description. The description provides use cases, parameter details, and hints. Since an output schema is present, not explaining return values is acceptable. The only minor gap is the lack of explicit mention about read-only nature or potential limitations, but overall it is complete for its complexity.

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

    Parameters5/5

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

    The description adds significant meaning beyond the schema. It provides defaults for recall_num (10) and return_num (3), enumerates valid values for language ('Python') and domain ('name'/'description'), and gives illustrative query examples for instructions ('Model.addConstr()' and a description query). Schema descriptions are generic, so the description compensates effectively with concrete usage details.

    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 purpose: to recall and rank the most similar API docs based on query instructions, specifically for COPT API usage. It distinguishes from sibling tools (get_citation, get_reference) by focusing on API documentation search, and uses a specific verb ('召回并排序') that conveys the retrieval and ranking behavior.

    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 explicitly states when to use the tool ('when you are unclear about COPT's relevant API usage') and provides hints on selecting 'name' vs 'description' fields for different query scenarios. It doesn't explicitly mention when not to use it or name alternatives, but the context and field-level recommendations offer clear guidance.

    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

COPT-MCP MCP server

Copy to your README.md:

Score Badge

COPT-MCP 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/ChengJiale150/COPT-MCP'

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