get-paper-info
Retrieve detailed information about a specific paper by providing its arXiv ID using Hugging Face MCP Server. Streamline access to research data and metadata for efficient academic workflows.
Instructions
Get information about a specific paper on Hugging Face
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arxiv_id | Yes | The arXiv ID of the paper (e.g., '1810.04805') |
Input Schema (JSON Schema)
{
"properties": {
"arxiv_id": {
"description": "The arXiv ID of the paper (e.g., '1810.04805')",
"type": "string"
}
},
"required": [
"arxiv_id"
],
"type": "object"
}