Skip to main content
Glama
rdwj

NIH RePORTER MCP Server

by rdwj

Nih Get Project

nih_get_project
Read-only

Fetch full details for a specific NIH-funded project by application ID or project number, returning abstract, PIs, funding breakdown, and study section.

Instructions

Get full details for a specific NIH-funded project.

Use this after finding a project of interest via nih_search_projects. Accepts either an application ID (numeric, e.g. 10878415) or a full project number (e.g. '5R01CA123456-03'). Returns the complete record including abstract, all PIs, funding breakdown, and study section.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appl_idNoApplication ID — unique numeric identifier for an NIH grant application. Example: 10878415
project_numNoFull NIH project number. Example: '5R01CA123456-03'. Format: type + activity + IC + serial + year.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A4.5/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 the safety profile is covered. The description adds useful behavioral context — it accepts either an appl_id or a project_num, and it enumerates the returned content (abstract, all PIs, funding breakdown, study section). It doesn't mention auth, rate limits, or error behavior, keeping it short of a 5.

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?

Three short sentences, front-loaded with the core purpose and then the routing guidance. No filler; every sentence carries a distinct fact.

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?

An output schema exists, so return values needn't be re-explained, yet the description still summarizes the payload. With annotations covering safety and 100% schema coverage, nothing an agent needs to invoke this correctly is missing.

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 both parameters are already fully documented in the schema with the same example values the description repeats. The description's 'accepts either' phrasing adds mild value by implying the two identifiers are alternatives, but otherwise the schema does the heavy lifting.

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?

States a specific verb ('Get full details') and resource ('a specific NIH-funded project'), and clearly demarcates itself from the sibling search tool. An agent can tell it apart from nih_search_projects without opening the schema.

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?

Explicitly states the workflow condition: 'Use this after finding a project of interest via nih_search_projects,' naming the alternative and when to reach for it. This is exactly the retrieval-after-search routing guidance an agent needs.

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