Skip to main content
Glama

developer-tools-mcp-server

search_arxiv

Read-only

Search arXiv for academic papers in computer science, machine learning, AI, physics, and mathematics. Returns paper titles, authors, abstracts, submission dates, and direct PDF download links. Use for researching algorithms, ML techniques, or emerging CS topics.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesResearch topic in CS/ML/physics (e.g. 'transformer architectures', 'distributed systems', 'quantum algorithms')
max_resultsNoPapers to return (default 10, suitable for focused research)

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so safety is known. The description adds behavioral detail by specifying the return fields (titles, authors, abstracts, dates, PDF links), which helps the agent anticipate the output. It does not mention any limitations like metadata-only search, but that is not critical.

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?

Two crisp sentences without fluff. The first sentence covers purpose and output, the second covers usage. All sentences earn their keep.

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?

With two simple parameters, full schema descriptions, and read-only annotations, the description provides sufficient context. It lists output fields and usage, making it complete for a search tool without needing an output schema.

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 covers both parameters with descriptions, so coverage is 100%. The description reinforces the query domain but adds no new parameter semantics beyond the schema. Baseline 3 applies.

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 opens with 'Search arXiv for academic papers in computer science, machine learning, AI, physics, and mathematics,' which clearly states the action, resource, and domain scope. It differentiates from sibling search tools like search_google_scholar by naming arXiv specifically and listing return fields.

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 phrase 'Use for researching algorithms, ML techniques, or emerging CS topics' provides clear usage context. It does not explicitly name alternatives like search_google_scholar or exclude non-academic queries, so it stops short of a full 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: get for specific GitHub repos and npm/PyPI packages, search for GitHub repos, arXiv papers, Google Scholar papers, and Stack Overflow Q&A. No two tools overlap in purpose.

Naming Consistency5/5

All tool names follow a consistent verb_source pattern using snake_case (get_github_repo, get_npm_package, search_arxiv, etc.). This makes the set predictable and easy to navigate.

Tool Count5/5

With 7 tools, the server covers a focused domain—developer research and resource evaluation—without bloat. Each tool contributes a distinct function, and the count is well-balanced for the scope.

Completeness4/5

The tool surface covers fetching metadata for known repos/packages and searching multiple external platforms. A minor gap is the lack of direct search for npm or PyPI packages, but GitHub search partially fills this need. Overall, lifecycle coverage is appropriate for a read-only research assistant.

Resources