Skip to main content
Glama

Server Quality Checklist

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

  • Disambiguation5/5

    Each tool has a clearly distinct purpose with no overlap: get_arxiv_pdf_url retrieves PDF URLs, get_recent_ai_papers fetches recent AI papers, parse_paper_content extracts content from papers, and search_arxiv searches for papers. The descriptions reinforce these distinct functions, making misselection unlikely.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern (e.g., get_arxiv_pdf_url, parse_paper_content) using snake_case throughout. This predictability makes the set easy to understand and navigate without any deviations in style.

    Tool Count4/5

    With 4 tools, the count is slightly lean but reasonable for the arXiv paper domain. It covers core operations like searching, retrieving recent papers, getting PDFs, and parsing content, though it might benefit from additional tools for filtering or advanced queries.

    Completeness4/5

    The toolset provides good coverage for basic arXiv interactions, including search, retrieval, and content parsing. However, there are minor gaps, such as no tools for filtering results by date or category beyond AI, or for accessing paper metadata like authors and abstracts directly.

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

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

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • 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?

    With no annotations provided, the description carries full burden for behavioral disclosure. It only states the basic action ('搜索' - search) without mentioning any behavioral traits like whether it returns metadata only, supports pagination, has rate limits, requires authentication, or what format results come in. This leaves significant gaps for a search tool.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise ('搜索 arXiv 论文' - Search arXiv papers) - just four characters in Chinese. While this is efficient and front-loaded, it might be overly terse given the tool's functionality and lack of sibling differentiation. Every word earns its place, but more content could be justified.

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

    Completeness2/5

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

    Given the tool has no annotations, no output schema, and the description is minimal, it's incomplete for a search tool with 2 parameters. The description doesn't explain what kind of search it performs, what fields are searched, what the results look like, or any limitations. With richer context needed, this falls short of being complete enough.

    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 description coverage is 100%, so the schema already documents both parameters ('query' and 'maxResults') with descriptions. The tool description adds no additional meaning about parameters beyond what's in the schema. According to guidelines, when schema coverage is high (>80%), the baseline is 3 even with no param info in the description.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose3/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description '搜索 arXiv 论文' (Search arXiv papers) states the basic purpose with a clear verb ('搜索' - search) and resource ('arXiv 论文' - arXiv papers). However, it lacks specificity about what kind of search it performs (e.g., title/abstract/full-text) and doesn't distinguish it from sibling tools like 'get_recent_ai_papers' or 'parse_paper_content'.

    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?

    The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when this search tool is appropriate compared to 'get_recent_ai_papers' (which might fetch recent papers without a query) or 'parse_paper_content' (which processes paper content). No context about use cases or exclusions is provided.

    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 of behavioral disclosure. It states what the tool does but doesn't reveal any behavioral traits like whether it's read-only, requires authentication, has rate limits, or what the output format might be. This is a significant gap for a tool with no annotation coverage.

    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, efficient sentence in Chinese ('获取 arXiv PDF 下载链接') that directly states the tool's purpose with zero waste. It's appropriately sized and front-loaded, making it easy to parse quickly.

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

    Completeness2/5

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

    Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., a PDF URL string), potential errors, or behavioral context, leaving gaps that could hinder an AI agent's ability to use the tool effectively.

    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 description coverage is 100%, with the input parameter clearly documented as accepting arXiv URLs or IDs. The description doesn't add any meaning beyond what the schema provides, such as examples or constraints, so it meets the baseline score of 3 where the schema does the heavy lifting.

    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 '获取 arXiv PDF 下载链接' clearly states the verb ('获取' meaning 'get') and resource ('arXiv PDF 下载链接' meaning 'arXiv PDF download link'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'get_recent_ai_papers' or 'parse_paper_content' which also work with arXiv papers, so it doesn't reach the highest score.

    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?

    The description provides no guidance on when to use this tool versus alternatives like 'search_arxiv' or 'parse_paper_content'. It doesn't mention prerequisites, such as needing an arXiv URL or ID, or exclusions, leaving the agent to infer usage from the input schema alone.

    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 of behavioral disclosure. It mentions the HTML/PDF fallback behavior, which is useful. However, it doesn't describe critical traits like whether this is a read-only operation, potential rate limits, authentication needs, error handling, or what the parsed output looks like (since there's no output schema). For a tool that likely involves network requests and content processing, this is a significant 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/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise (one sentence) and front-loaded with the core purpose. Every word earns its place by specifying the action, resource, and a key behavioral detail (HTML/PDF preference). There's no wasted text or redundancy.

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

    Completeness2/5

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

    Given the complexity (parsing academic papers with fallback logic), lack of annotations, and no output schema, the description is incomplete. It doesn't explain what 'parsed content' includes (e.g., full text, abstracts, sections), error conditions, or performance characteristics. For a tool with 2 parameters (one nested) and no structured output definition, more context is needed for effective use.

    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 description coverage is 100%, so the schema already documents both parameters ('input' as arXiv URL/ID and 'paperInfo' as optional metadata). The description adds no additional parameter semantics beyond what's in the schema. It doesn't explain format expectations (e.g., arXiv ID patterns) or how 'paperInfo' might affect parsing. Baseline 3 is appropriate when the schema does the heavy lifting.

    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 action ('解析论文内容' - parse paper content) and specifies the resource (papers from arXiv via URL/ID). It distinguishes from siblings like 'get_arxiv_pdf_url' (which only retrieves URLs) and 'search_arxiv' (which searches metadata) by focusing on content extraction. However, it doesn't explicitly mention what content is extracted (e.g., text, sections, references).

    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 provides some usage context by stating '优先使用 HTML 版本,回退到 PDF' (prefer HTML version, fallback to PDF), which implies when to use this tool for content parsing rather than just getting PDF URLs. However, it doesn't explicitly compare with alternatives like 'get_recent_ai_papers' or 'search_arxiv', nor does it specify prerequisites or when not to use it.

    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 of behavioral disclosure. It states the tool fetches recent papers but doesn't describe key behaviors such as rate limits, authentication needs, return format (e.g., list of papers with metadata), pagination, or error handling. This leaves significant gaps for an AI agent to understand how to invoke it correctly.

    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, efficient sentence in Chinese that directly states the tool's purpose without any wasted words. It is front-loaded with the core action and resource, making it highly concise and well-structured for quick understanding.

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

    Completeness2/5

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

    Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is minimal but adequate for basic understanding. However, it lacks details on behavioral aspects like return format, error handling, or usage constraints, which are important for complete contextual understanding. With no output schema, the description should ideally hint at what is returned, but it doesn't, leaving gaps in completeness.

    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 tool has 0 parameters, and schema description coverage is 100%, so there are no parameters to document. The description adds value by specifying the arXiv category (cs.AI/recent), which isn't in the schema. This earns a baseline score of 4 for parameter semantics, as it compensates appropriately for the lack of parameters.

    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 action ('获取' meaning 'get') and resource ('arXiv AI 领域最新论文' meaning 'latest arXiv AI papers'), specifying the exact arXiv category (cs.AI/recent). It distinguishes from sibling tools like 'search_arxiv' by focusing on recent papers rather than search functionality. However, it doesn't explicitly contrast with 'get_arxiv_pdf_url' or 'parse_paper_content', keeping it from a perfect score.

    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 for retrieving recent AI papers from arXiv, but provides no explicit guidance on when to use this tool versus alternatives like 'search_arxiv' for broader searches or 'get_arxiv_pdf_url' for specific PDFs. The context is clear but lacks explicit when/when-not statements or named alternatives, resulting in an implied usage score.

    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

bach-Arxiv-Paper-MCP MCP server

Copy to your README.md:

Score Badge

bach-Arxiv-Paper-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/BACH-AI-Tools/bach-Arxiv-Paper-MCP'

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