search_combined
Query NIH-funded projects and associated publications simultaneously by specifying criteria like fiscal years, PI names, organizations, funding types, and award amounts using the search_combined tool on the NIH RePORTER MCP server.
Instructions
Search for NIH projects and their related publications in a single query
Args:
fiscal_years: Comma-separated list of fiscal years (e.g., "2022,2023")
pi_names: Comma-separated list of PI names
organization: Name of the organization
org_state: Two-letter state code (e.g., "CA", "NY")
funding_mechanism: Type of funding (e.g., "R01", "F32", "K99")
ic_code: Institute or Center code (e.g., "NCI", "NIMH")
min_amount: Minimum award amount
max_amount: Maximum award amount
covid_response: COVID-19 response category
include_publications: Whether to include related publications
publication_years: Comma-separated list of publication years
limit: Maximum number of results to return (default: 10, max: 50)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
covid_response | No | ||
fiscal_years | No | ||
funding_mechanism | No | ||
ic_code | No | ||
include_publications | No | ||
limit | No | ||
max_amount | No | ||
min_amount | No | ||
org_state | No | ||
organization | No | ||
pi_names | No | ||
publication_years | No |
Input Schema (JSON Schema)
{
"properties": {
"covid_response": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Covid Response"
},
"fiscal_years": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Fiscal Years"
},
"funding_mechanism": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Funding Mechanism"
},
"ic_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ic Code"
},
"include_publications": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": true,
"title": "Include Publications"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"title": "Limit"
},
"max_amount": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Max Amount"
},
"min_amount": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Min Amount"
},
"org_state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Org State"
},
"organization": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Organization"
},
"pi_names": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Pi Names"
},
"publication_years": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Publication Years"
}
},
"title": "search_combinedArguments",
"type": "object"
}