Skip to main content
Glama
andybrandt

mcp-simple-arxiv

by andybrandt

Server Quality Checklist

67%
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: get_paper_data retrieves specific paper details, list_categories shows available categories, search_papers performs searches, and update_categories refreshes category data. There is no overlap in functionality that would cause confusion.

    Naming Consistency5/5

    All tools follow a consistent verb_noun naming pattern (get_paper_data, list_categories, search_papers, update_categories). The naming is uniform and predictable throughout the set.

    Tool Count5/5

    With 4 tools, this server is well-scoped for arXiv paper access. Each tool serves a clear purpose (retrieval, listing, searching, updating) without being too sparse or bloated, making it efficient for the domain.

    Completeness4/5

    The tools cover core arXiv operations: searching, retrieving paper details, and managing categories. A minor gap is the lack of tools for downloading papers or handling user-specific features like saved papers, but the basic workflow is well-supported.

  • Average 4.1/5 across 4 of 4 tools scored. Lowest: 3.4/5.

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

    • No 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

  • Behavior3/5

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

    Annotations already declare readOnlyHint=true and openWorldHint=true, indicating a safe, read-only operation with open-world assumptions. The description adds some context by specifying the type of information retrieved ('abstract and available formats'), but does not disclose additional behavioral traits like rate limits, error handling, or authentication needs. No contradiction with annotations exists.

    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: 'Get detailed information about a specific paper including abstract and available formats.' It is front-loaded with the core purpose and includes key details without unnecessary words, making it highly concise and well-structured.

    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 tool's low complexity (one parameter) and the presence of annotations (readOnlyHint, openWorldHint) and an output schema (which handles return values), the description is reasonably complete. It specifies the information retrieved, but lacks usage guidelines and parameter details, which are minor gaps in this context.

    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 0%, meaning the parameter 'paper_id' is undocumented in the schema. The description does not add any semantic details about this parameter, such as expected format (e.g., arXiv ID like '2401.12345') or examples. With one parameter and no schema documentation, the description fails to compensate, resulting in a baseline score of 3.

    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's purpose: 'Get detailed information about a specific paper including abstract and available formats.' It specifies the verb ('Get'), resource ('paper'), and scope ('detailed information'), but does not explicitly differentiate it from sibling tools like 'search_papers' or 'list_categories', which prevents a score of 5.

    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 does not mention sibling tools like 'search_papers' for broader searches or 'list_categories' for category listings, nor does it specify prerequisites or exclusions, such as requiring a specific paper ID format.

    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?

    Annotations already declare readOnlyHint=true and openWorldHint=false, indicating this is a safe read operation with a closed set of results. The description adds that it lists categories and how to use them in search, which provides some behavioral context beyond annotations, but doesn't detail aspects like response format, pagination, or error handling. No contradiction with annotations exists.

    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, clear sentence that efficiently conveys the core purpose and an additional use case ('how to use them in search'). It's front-loaded with the main action and avoids unnecessary words, making it highly concise and well-structured.

    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 tool's low complexity (read-only, 1 optional parameter), annotations covering safety, and the presence of an output schema (which handles return values), the description is mostly complete. It explains what the tool does and adds search usage context. However, it misses explaining the optional parameter, which is a minor gap in an otherwise adequate description for this context.

    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?

    With 0% schema description coverage and 1 parameter, the description carries the burden of explaining parameters. It doesn't mention the 'primary_category' parameter at all, which is a gap. However, since there's only one optional parameter with a default null value, and the tool likely functions without it (listing all categories), the description's omission is less critical. Baseline for 0 parameters would be 4, but with 1 undocumented parameter, it's slightly penalized.

    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 ('List all available arXiv categories') and the resource ('arXiv categories'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'update_categories' or 'search_papers', which would require a 5. The phrase 'and how to use them in search' adds useful context but doesn't fully distinguish it from alternatives.

    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_papers' or 'update_categories'. It mentions 'how to use them in search' which implies a connection to searching, but doesn't specify if this should be used before searching, for filtering, or as a reference. No explicit when/when-not instructions or named alternatives are provided.

    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?

    Annotations provide readOnlyHint=false (indicating mutation) and openWorldHint=true (suggesting external data fetching). The description adds valuable behavioral context: it specifies that this tool fetches from arxiv.org (external source) and updates stored data. This goes beyond annotations by revealing the external dependency and the 'fetch-and-update' nature of the 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?

    Single sentence that efficiently conveys the entire operation: action (update), target (stored category taxonomy), method (fetching), and source (arxiv.org). No wasted words, perfectly front-loaded with the core purpose.

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

    Completeness5/5

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

    For a parameterless tool with annotations covering mutation/external access and an output schema present, the description provides exactly what's needed: it explains what the tool does, where it gets data, and what it updates. The presence of an output schema means return values don't need explanation in the description.

    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 with 100% schema description coverage (empty schema). The description doesn't need to explain parameters, but it implicitly confirms there are no required inputs by describing a self-contained fetch operation. This is appropriate for a parameterless tool.

    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 specific action ('update'), the resource ('stored category taxonomy'), and the source ('fetching the latest version from arxiv.org'). It distinguishes from siblings like 'list_categories' (which presumably reads existing data) and 'get_paper_data'/'search_papers' (which work with papers rather than taxonomy).

    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 implies usage context: when you need to refresh the locally stored taxonomy with the latest from arxiv.org. It doesn't explicitly state when NOT to use it or name alternatives, but the context is clear enough for an agent to infer this is for maintenance/update operations rather than regular queries.

    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?

    Annotations already provide readOnlyHint=true and openWorldHint=true, indicating a safe, read-only operation with open-world data. The description adds valuable behavioral context beyond annotations by detailing advanced search syntax, examples, and the ability to filter by category, which helps the agent understand how to construct effective queries. However, it does not mention rate limits, pagination, or error handling, leaving some behavioral aspects uncovered.

    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 and front-loaded with the core purpose, followed by syntax details and examples. Every sentence earns its place by providing essential information without redundancy, making it efficient and easy to parse for an AI agent.

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

    Completeness5/5

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

    Given the tool's complexity (search with advanced syntax), low schema coverage (0%), and the presence of an output schema (which handles return values), the description is complete enough. It covers purpose, usage, parameters, and examples, leaving no critical gaps for the agent to operate effectively in context.

    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 input schema has 0% description coverage, so the description fully compensates by explaining the semantics of the 'query' parameter in detail (e.g., advanced syntax, examples) and implies the use of 'max_results' through examples like limiting results. It adds significant meaning beyond the bare schema, making parameter usage clear and actionable.

    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 specific action ('Search for papers on arXiv') and resource ('by title and abstract content'), distinguishing it from sibling tools like 'get_paper_data' (likely for retrieving specific papers), 'list_categories' (for listing categories), and 'update_categories' (for updating categories). It provides a verb+resource+scope combination that is precise and differentiated.

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

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description explicitly provides usage guidance by naming an alternative tool ('use list_categories tool to see available categories') and includes examples that illustrate when to use specific syntax (e.g., for title, abstract, author, category filtering). It effectively guides the agent on how to apply the tool in different contexts without being misleading.

    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-simple-arxiv MCP server

Copy to your README.md:

Score Badge

mcp-simple-arxiv 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/andybrandt/mcp-simple-arxiv'

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