Skip to main content
Glama
cbyrohl

mcp-server-ads

by cbyrohl

mcp-server-ads

Python 3.11+ License: MIT

A powerful MCP server for the NASA Astrophysics Data System (ADS) — the primary database for astrophysics literature. Search papers, traverse citation graphs forward and backward, export BibTeX, compute metrics, and manage reading lists, all through natural language. Works with Claude Desktop/Code, Cursor, OpenAI Codex, and any MCP-compatible client.

demo_15fps_crf20.webm

Quick Start

Get an ADS API Token

  1. Create a free account at NASA ADS

  2. Log in and go to Settings > API Token

  3. Click Generate a new key and copy the token

Installation

No separate install step needed — the client configurations below use uvx to automatically fetch and run the server. Just pick your client and go. Requires Python 3.11+ and uv.

Claude Code

claude mcp add --scope user mcp-server-ads -e ADS_API_TOKEN=your-api-token-here -- uvx --from git+https://github.com/cbyrohl/mcp-server-ads mcp-server-ads

Use --scope project instead to share the configuration via .mcp.json in your repo, or omit --scope for local (current project only).

Claude Desktop

Add to your Claude Desktop config:

{
  "mcpServers": {
    "ads": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/cbyrohl/mcp-server-ads", "mcp-server-ads"],
      "env": {
        "ADS_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

Codex CLI

codex mcp add mcp-server-ads --env ADS_API_TOKEN=your-api-token-here -- uvx --from git+https://github.com/cbyrohl/mcp-server-ads mcp-server-ads

This installs to ~/.codex/config.toml (user-level, available across all projects). For project-scoped config, add the entry to .codex/config.toml in your project root instead.

Standalone / Python API

If you want to install the package directly (e.g. as a Python library or to run the server manually):

# Install with uv
uv tool install git+https://github.com/cbyrohl/mcp-server-ads

# Or with pip
pip install git+https://github.com/cbyrohl/mcp-server-ads

Running from Source

git clone https://github.com/cbyrohl/mcp-server-ads.git
cd mcp-server-ads
uv sync

# Run the server
ADS_API_TOKEN=your-token uv run mcp-server-ads

Related MCP server: inspirehep-mcp

Configuration

Environment Variable

Required

Default

Description

ADS_API_TOKEN

Yes

API token from ADS

ADS_API_URL

No

https://api.adsabs.harvard.edu

API base URL (override for SciX)

Tools (11)

Tool

Description

ads_search

Search the ADS database with full query syntax, including citations(), references(), similar(), trending(), and reviews() operators

ads_bigquery

Search within a specific set of bibcodes (up to 2000)

Export & Metrics

Tool

Description

ads_export

Export records in 18+ formats (BibTeX, AASTeX, RIS, CSL, etc.)

ads_metrics

Compute citation metrics (h-index, g-index, citation counts, etc.)

Libraries

Tool

Description

ads_library

Manage libraries: list, get, create, edit, or delete saved paper collections

ads_library_documents

Manage documents and notes within a library: add/remove papers, set operations (union, intersection, difference, copy, empty), and note CRUD

Discovery & Resolution

Tool

Description

ads_resolve_links

Resolve available links for a paper (full text, data, etc.)

ads_object_search

Translate astronomical object names to ADS queries (SIMBAD/NED)

ads_citation_helper

Suggest papers that should be cited alongside a given set

ads_resolve_reference

Resolve free-text reference strings to ADS bibcodes

Network Visualization

Tool

Description

ads_network

Generate author collaboration or paper citation networks from a set of papers

Resources

URI

Description

ads://fields

Complete reference of searchable and returnable ADS fields

ads://syntax

ADS query syntax quick-reference with examples

ads://rate-limits

Live API rate-limit status

Prompts

Prompt

Description

literature_review

Multi-step literature review workflow for a research topic

citation_analysis

Citation network analysis workflow for a set of papers

generate_bibliography

Generate a formatted bibliography from search or bibcodes

Similar Projects

This server focuses on broad ADS API coverage, token-efficient output, and integration-tested reliability. Compared to arXiv-based tools, ADS enables forward/backward citation traversal (citations and references of any paper), though it is focused on astrophysics.

Development

# Install dev dependencies
uv sync

# Run tests
uv run pytest

# Lint
uv run ruff check src/ tests/

# Run the server locally
ADS_API_TOKEN=your-token uv run mcp-server-ads

License

MIT

Available Tools

11 tools
ads_bigqueryA
Read-only

Search within a specific set of bibcodes (big-query).

Useful for filtering, sorting, or retrieving metadata for a known set of papers. Provide up to 2000 bibcodes at once.

ParametersJSON Schema
NameRequiredDescriptionDefault
bibcodesYesList of bibcodes to search within
queryNoADS query to apply to the bibcode set. Use '*:*' for no filter.*:*
fieldsNoComma-separated fields to returnbibcode,title,author,year,pub,citation_count,identifier
sortNoSort order. Default: 'date desc'date desc
rowsNoNumber of results (1-200). Default: 10

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, indicating a safe read operation. The description adds valuable behavioral context beyond annotations: it specifies a limit ('Provide up to 2000 bibcodes at once'), which is a rate limit or constraint not covered by annotations. It also implies the tool returns metadata (e.g., for 'retrieving metadata'), though this is partially covered by the output schema. No contradictions with annotations are present.

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 highly concise and well-structured: three sentences that are front-loaded with the core purpose, followed by usage context and a key constraint. Every sentence adds value—no wasted words or redundancy. It efficiently communicates essential information without unnecessary detail.

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 complexity (5 parameters, one required), rich annotations (readOnlyHint, destructiveHint), and the presence of an output schema, the description is mostly complete. It covers the purpose, usage context, and a key constraint (2000 bibcode limit). However, it could be more complete by explicitly differentiating from sibling tools or detailing error cases, but the annotations and output schema reduce the burden on the description. The description adequately supplements the structured data for effective tool selection.

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%, meaning the input schema fully documents all parameters (bibcodes, query, fields, sort, rows). The description adds minimal parameter semantics beyond the schema: it mentions 'bibcodes' in the context but doesn't explain their format or source, and it implies the tool handles 'filtering, sorting, or retrieving metadata,' which aligns with the query, sort, and fields parameters. Given the high schema coverage, a baseline score of 3 is appropriate as the description doesn't significantly enhance parameter understanding.

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: 'Search within a specific set of bibcodes (big-query)' and 'Useful for filtering, sorting, or retrieving metadata for a known set of papers.' This specifies the verb (search), resource (bibcodes/papers), and scope (within a known set). However, it doesn't explicitly differentiate from sibling tools like 'ads_search' or 'ads_object_search' beyond mentioning 'big-query' and 'known set of papers.'

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 implied usage context: 'Useful for filtering, sorting, or retrieving metadata for a known set of papers.' This suggests it's for when you already have bibcodes. However, it doesn't explicitly state when to use this tool versus alternatives like 'ads_search' (which might search the full database) or other siblings, nor does it mention any exclusions or prerequisites beyond the bibcodes requirement.

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

ads_citation_helperA
Read-only

Suggest papers that should be cited alongside the given set.

Given a set of bibcodes (e.g. from a paper's bibliography), the citation helper returns papers that are frequently co-cited with the input set but are not yet included.

ParametersJSON Schema
NameRequiredDescriptionDefault
bibcodesYesList of bibcodes already in the bibliography

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, indicating a safe read operation. The description adds behavioral context by specifying that it returns 'papers that are frequently co-cited' and excludes those 'not yet included,' which clarifies the recommendation logic. However, it lacks details on rate limits, response format, or potential errors, 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 front-loaded with the core purpose in the first sentence and follows with a clarifying second sentence. Every sentence earns its place by defining the input, output, and logic without redundancy. It is appropriately sized, avoiding unnecessary details while being fully informative for the tool's scope.

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 moderate complexity (citation recommendation based on co-citation), annotations cover safety, schema covers the single parameter, and an output schema exists (though not detailed here). The description adequately explains the tool's function and logic. However, it could be more complete by hinting at output structure or usage constraints, but the presence of an output schema reduces the need for such details, making it nearly sufficient.

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%, with the parameter 'bibcodes' fully documented in the schema as 'List of bibcodes already in the bibliography.' The description reinforces this by mentioning 'a set of bibcodes (e.g. from a paper's bibliography),' adding minimal semantic value beyond the schema. Since coverage is high, the baseline score of 3 is appropriate, as the description does not significantly enhance parameter understanding.

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 verb ('suggest papers that should be cited') and resource ('papers'), and distinguishes it from siblings by focusing on citation recommendations rather than search, export, or metrics. It explicitly defines the input as 'a set of bibcodes (e.g. from a paper's bibliography)' and the output as 'papers that are frequently co-cited with the input set but are not yet included,' making the purpose distinct and well-specified.

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 for when to use this tool: 'Given a set of bibcodes (e.g. from a paper's bibliography),' implying it's for enhancing bibliographies. However, it does not explicitly state when not to use it or name alternatives among sibling tools (e.g., ads_search for general paper discovery), which limits guidance on tool selection in broader workflows.

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

ads_exportA
Read-only

Export paper records in various citation formats.

Supports 18+ formats including BibTeX, AASTeX, RIS, EndNote, CSL-JSON, Dublin Core XML, VOTable, and more. Returns formatted citation text.

ParametersJSON Schema
NameRequiredDescriptionDefault
bibcodesYesList of bibcodes to export
formatNoExport format. Common choices: 'bibtex', 'bibtexabs', 'aastex', 'ris', 'csl'bibtex
sortNoSort order for the exported records. Default: 'date desc'date desc
journalformatNoJournal name format (only for some export formats)

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, establishing safety. The description adds valuable behavioral context by specifying the return type ('formatted citation text') and listing 18+ supported formats, which helps agents understand output expectations beyond the annotations.

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 sentences with zero waste: first states purpose and scope, second lists formats and return type. Well-structured and appropriately sized for the tool's complexity.

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 presence of annotations (readOnly, non-destructive), 100% schema coverage, and an output schema (implied by context signals), the description provides complete contextual information. It covers purpose, formats, and return type without needing to duplicate structured data.

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?

With 100% schema description coverage, the schema fully documents all parameters. The description doesn't add parameter-specific semantics beyond what's in the schema, so it meets the baseline of 3 without compensating for gaps.

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 verb ('Export') and resource ('paper records') with specific scope ('in various citation formats'). It distinguishes from siblings by focusing on citation export rather than search, metrics, or other functions mentioned in the sibling 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 by listing supported formats, but doesn't explicitly state when to use this tool versus alternatives like ads_citation_helper or ads_search. No guidance on prerequisites 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.

ads_libraryA

Manage ADS libraries (saved paper collections).

Actions:

  • list: List all your libraries

  • get: Get a library's details and bibcodes (requires library_id)

  • create: Create a new library (requires name)

  • edit: Edit library metadata (requires library_id)

  • delete: Permanently delete a library (requires library_id)

ParametersJSON Schema
NameRequiredDescriptionDefault
actionYesAction to perform on a library
library_idNoLibrary ID (required for get/edit/delete)
nameNoLibrary name (required for create, optional for edit)
descriptionNoLibrary description (optional for create/edit)
publicNoWhether library is public (optional for create/edit)
bibcodesNoInitial bibcodes when creating a library
rowsNoNumber of results to return. Default: 100
startNoStarting index for pagination. Default: 0

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.7/5.0
Behavior4/5

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

The description adds valuable behavioral context beyond the annotations. While annotations indicate this isn't read-only or destructive overall, the description clarifies that the 'delete' action is 'permanently delete' and specifies which actions require which parameters. It also mentions that 'get' returns both details and bibcodes, providing useful implementation context that annotations don't cover.

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 perfectly structured and concise. It starts with a clear purpose statement, then uses a bulleted list format to efficiently present each action with its requirements. Every sentence earns its place, with zero wasted words or redundant information.

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 (8 parameters, 5 actions), the description provides complete guidance. With annotations covering safety aspects, an output schema presumably handling return values, and the description clearly explaining action selection and parameter requirements, there are no significant gaps. The description appropriately focuses on what the agent needs to know to select and invoke the tool correctly.

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 100% schema description coverage, the baseline would be 3, but the description adds meaningful context by grouping parameters with actions. It clarifies that library_id is required for get/edit/delete, name is required for create, and description/public are optional for create/edit. This action-parameter mapping provides semantic value beyond the individual parameter descriptions in 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 purpose as managing ADS libraries (saved paper collections) and lists five specific actions with their required parameters. It distinguishes this tool from siblings like ads_search or ads_export by focusing specifically on library management rather than searching, exporting, or other functions.

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 provides explicit guidance on when to use each action (list all libraries, get details with library_id, create with name, edit with library_id, delete with library_id) and includes parameter requirements. It clearly differentiates between actions that require library_id versus those that don't, giving the agent clear decision criteria.

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

ads_library_documentsA

Manage documents and notes within an ADS library.

Document actions:

  • add/remove: Add or remove bibcodes from the library

  • union/intersection/difference/copy/empty: Set operations with other libraries

Note actions:

  • get_notes: List all notes in the library

  • add_note/edit_note/delete_note: Manage notes on individual papers

ParametersJSON Schema
NameRequiredDescriptionDefault
library_idYesLibrary ID
actionYesAction: add/remove bibcodes, set operations (union/intersection/difference/copy/empty), or note management (get_notes/add_note/edit_note/delete_note)
bibcodesNoBibcodes to add/remove
librariesNoLibrary IDs for set operations
bibcodeNoSingle bibcode for note operations
contentNoNote content (for add_note/edit_note)

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior4/5

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

Annotations indicate this is not read-only and not destructive, but the description adds valuable behavioral context beyond this. It clarifies that 'empty' action clears a library and that note operations work on individual papers. However, it doesn't mention rate limits, authentication requirements, or what happens with conflicting operations.

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 well-structured with clear categorization (document actions vs note actions) and bullet points for readability. It's appropriately sized for a multi-function tool, though the bullet format could be more concise. Every sentence earns its place by clarifying the tool's scope.

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 complexity (11 actions across two domains), the description provides good coverage of what the tool does. With annotations covering safety aspects and an output schema presumably handling return values, the description focuses appropriately on functional scope. It could benefit from more guidance about action selection and prerequisites.

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?

With 100% schema description coverage, the schema already documents all 6 parameters thoroughly. The description adds minimal value beyond the schema by grouping actions into document vs note categories, but doesn't provide additional semantic context about parameter usage, dependencies, or edge cases.

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 as managing documents and notes within an ADS library, with specific actions listed for both document handling (add/remove bibcodes, set operations) and note management (get, add, edit, delete). It distinguishes itself from sibling tools like ads_library by focusing on document/note operations rather than general library management.

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 implied usage guidance by categorizing actions into document actions and note actions, but doesn't explicitly state when to use this tool versus alternatives like ads_library or ads_search. It lists available operations but doesn't provide context about when each action is appropriate or what prerequisites might exist.

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

ads_metricsA
Read-only

Compute citation metrics for a set of papers.

Returns h-index, g-index, i10-index, citation counts, read counts, and time-series histograms. Works for 1 to ~2000 bibcodes.

ParametersJSON Schema
NameRequiredDescriptionDefault
bibcodesYesList of bibcodes to compute metrics for
typesNoMetric types to compute. Options: 'basic', 'citations', 'indicators', 'histograms'. Default: all.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, indicating a safe read operation. The description adds useful context about the return values (specific metrics and histograms) and the bibcode limit (~2000), which helps set expectations beyond the annotations. However, it does not detail rate limits, auth needs, or error handling.

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 front-loaded with the core purpose, followed by return details and scope. Both sentences are essential: the first defines the action and output, the second adds critical constraints. There is no wasted text, making it highly efficient.

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 complexity (2 parameters, 100% schema coverage, output schema exists, annotations provided), the description is mostly complete. It explains what the tool does, what it returns, and operational limits. However, it could benefit from more explicit usage guidelines relative to siblings, but the output schema reduces the need to detail return values.

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%, with clear descriptions for both parameters (bibcodes and types). The description adds minimal value beyond the schema, as it does not explain parameter interactions or provide additional semantics. With high schema coverage, the baseline score of 3 is appropriate.

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 verb 'compute' and resource 'citation metrics for a set of papers', specifying what metrics are returned (h-index, g-index, etc.) and the scope (1 to ~2000 bibcodes). It distinguishes from siblings like ads_search or ads_bigquery by focusing specifically on metric computation rather than searching, querying, or exporting.

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 computing citation metrics given bibcodes, but does not explicitly state when to use this tool versus alternatives like ads_citation_helper or ads_search. It provides a scope (1-2000 bibcodes) but lacks explicit guidance on prerequisites or exclusions.

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

ads_networkA
Read-only

Generate a collaboration or citation network from a set of papers.

  • author: Groups authors who frequently co-author together

  • paper: Clusters papers by shared references/citations to reveal sub-topics

ParametersJSON Schema
NameRequiredDescriptionDefault
bibcodesYesList of bibcodes to build the network from
typeNoNetwork type: 'author' for collaboration groups, 'paper' for citation clustersauthor

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior3/5

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

Annotations indicate readOnlyHint=true and destructiveHint=false, so the agent knows this is a safe read operation. The description adds behavioral context by explaining what each network type does (e.g., 'Groups authors who frequently co-author together'), which goes beyond annotations. However, it doesn't disclose details like rate limits, output format, or computational requirements.

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 front-loaded with a clear purpose statement, followed by bullet points that efficiently explain the two network types. Every sentence earns its place with no wasted words, making it easy to scan and understand quickly.

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 moderate complexity, rich annotations (read-only, non-destructive), and the presence of an output schema, the description is reasonably complete. It covers the core functionality and parameter semantics well. However, it could benefit from mentioning sibling tools or use-case examples to enhance contextual understanding.

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%, with clear descriptions for 'bibcodes' and 'type' parameters. The description adds value by explaining the semantics of the 'type' parameter options: 'author' groups co-authors, and 'paper' clusters by shared references. This enhances understanding beyond the schema's enum list, but doesn't provide additional details for 'bibcodes'.

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: 'Generate a collaboration or citation network from a set of papers.' It specifies the verb 'generate' and resource 'network,' and distinguishes between two network types. However, it doesn't explicitly differentiate from sibling tools like ads_search or ads_metrics, which might also involve paper analysis.

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 by listing two network types: 'author' for collaboration groups and 'paper' for citation clusters. This provides some context on when to choose each type, but it doesn't explicitly state when to use this tool versus alternatives like ads_search for finding papers or ads_metrics for analysis. No exclusions or prerequisites are mentioned.

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

ads_resolve_referenceA
Read-only

Resolve free-text reference strings to ADS bibcodes.

Accepts human-readable reference strings and attempts to match them to records in ADS. Useful for identifying papers from partial citations.

ParametersJSON Schema
NameRequiredDescriptionDefault
referencesYesList of free-text reference strings to resolve (e.g. ['Einstein 1905 Annalen der Physik 17 891'])

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true and destructiveHint=false, so the agent knows this is a safe read operation. The description adds useful context about the tool's matching behavior ('attempts to match') and its utility for partial citations, but does not provide additional behavioral details like rate limits or error handling.

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 appropriately sized and front-loaded, with two concise sentences that efficiently convey the tool's purpose and usage without any wasted words or redundancy.

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 moderate complexity, high schema coverage, presence of annotations, and existence of an output schema, the description is complete enough. It effectively explains what the tool does and when to use it, without needing to detail return values or parameters.

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 fully documents the 'references' parameter. The description adds marginal value by clarifying the parameter's purpose ('free-text reference strings') and providing an example, but does not go beyond what the schema provides in terms of semantics.

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 with a specific verb ('Resolve') and resource ('free-text reference strings to ADS bibcodes'), and distinguishes it from siblings by specifying it's for matching human-readable reference strings to records, unlike general search or citation tools.

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 on when to use this tool ('Accepts human-readable reference strings and attempts to match them to records in ADS'), but does not explicitly state when not to use it or name specific alternatives among the sibling tools.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 11 tool updatesv0.1.0
    • First observedads_bigquery
    • First observedads_citation_helper
    • First observedads_export
    • First observedads_library
    • First observedads_library_documents
    • First observedads_metrics
    • First observedads_network
    • First observedads_object_search
    • First observedads_resolve_links
    • First observedads_resolve_reference
    • First observedads_search

TDQS

A4.2/5.0

Scored across 11 tools

Disambiguation5/5

Each tool has a clearly distinct purpose with no significant overlap. The tools cover different aspects of the ADS ecosystem: searching (ads_search, ads_bigquery), citation analysis (ads_citation_helper, ads_metrics), library management (ads_library, ads_library_documents), network analysis (ads_network), reference resolution (ads_resolve_reference, ads_resolve_links), object translation (ads_object_search), and export (ads_export). An agent can easily distinguish between them based on their specific functions.

Naming Consistency5/5

All tool names follow a consistent 'ads_' prefix with descriptive snake_case suffixes (e.g., ads_search, ads_metrics, ads_library). This pattern is maintained across all 11 tools, making them predictable and easy to understand. The naming convention clearly indicates they belong to the same server and domain.

Tool Count5/5

With 11 tools, this server is well-scoped for interacting with the NASA ADS database. The count is appropriate as it covers a comprehensive range of operations from basic searching to advanced analysis and management, without being overwhelming. Each tool serves a distinct and necessary function in the domain of academic paper discovery and analysis.

Completeness5/5

The tool set provides complete coverage for the ADS domain, including search (ads_search, ads_bigquery), citation management (ads_citation_helper, ads_metrics, ads_resolve_reference), library CRUD operations (ads_library, ads_library_documents), network analysis (ads_network), object translation (ads_object_search), link resolution (ads_resolve_links), and export (ads_export). There are no obvious gaps; agents can perform end-to-end workflows from discovery to analysis and organization.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Provides seamless access to the NASA Astrophysics Data System (ADS) for searching astronomical papers, tracking citations and metrics, managing paper libraries, and exporting BibTeX references through natural language conversation.
    10
    7
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    A Python-based MCP server that enables searching for high-energy physics literature on INSPIRE-HEP by title, author, or full text. It provides optimized search results including citations, abstracts, and arXiv links while allowing filters for publication date and collaboration size.
    3
    1
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    MCP server for the NASA Astrophysics Data System (ADS) enabling searches, paper retrieval, citation tracking, metrics, and interactive literature review prompts.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server that provides tools to query 17+ astronomical databases (e.g., SIMBAD, VizieR, Gaia) via HTTP/TAP APIs, enabling AI applications to access astronomical data through natural language.
    13
    2
    BSD 3-Clause