search_publications
Find publications associated with NIH-funded projects by entering PubMed IDs or core project numbers. Retrieve up to 50 results per query for efficient research tracking.
Instructions
Search for publications linked to NIH projects
Args:
pmids: Comma-separated list of PubMed IDs
core_project_nums: Comma-separated list of NIH core project numbers
limit: Maximum number of results to return (default: 10, max: 50)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
core_project_nums | No | ||
limit | No | ||
pmids | No |
Input Schema (JSON Schema)
{
"properties": {
"core_project_nums": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Core Project Nums"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"title": "Limit"
},
"pmids": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Pmids"
}
},
"title": "search_publicationsArguments",
"type": "object"
}