1.2.1npm · @langgpt/arxiv-paper-mcp · current release
Observed 2026-08-14T08:16:38.867Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2024-11-05.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
get_arxiv_pdf_url获取 arXiv PDF 下载链接Input schema{
"type": "object",
"properties": {
"input": {
"type": "string",
"description": "arXiv 论文URL(如:http://arxiv.org/abs/2403.15137v1)或 arXiv ID(如:2403.15137v1)"
}
},
"required": [
"input"
]
} | — | — · — | — |
get_recent_ai_papers获取 arXiv AI 领域最新论文(cs.AI/recent)Input schema{
"type": "object",
"properties": {},
"required": []
} | — | — · — | — |
parse_paper_content解析论文内容(优先使用 HTML 版本,回退到 PDF)Input schema{
"type": "object",
"properties": {
"input": {
"type": "string",
"description": "arXiv 论文URL或 arXiv ID"
},
"paperInfo": {
"type": "object",
"description": "论文信息(可选,用于添加论文元数据)",
"properties": {
"title": {
"type": "string"
},
"summary": {
"type": "string"
},
"published": {
"type": "string"
},
"authors": {
"type": "array"
}
}
}
},
"required": [
"input"
]
} | — | — · — | — |
search_arxiv搜索 arXiv 论文Input schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "搜索英文关键词"
},
"maxResults": {
"type": "number",
"description": "最大结果数量",
"default": 5
}
},
"required": [
"query"
]
} | — | — · — | — |