Skip to content

Commit 03a10eb

Browse files
authored
Add arXiv MCP server (#234)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent edbd5a1 commit 03a10eb

1 file changed

Lines changed: 56 additions & 0 deletions

File tree

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "blazickjp.arxiv-mcp-uvx",
4+
"name": "arXiv (uvx)",
5+
"alias": "arxiv",
6+
"description": "Search, download, and read arXiv research papers. Query arXiv with category/date filters, fetch papers as markdown, run citation-graph lookups, and watch topics for new publications. Downloaded papers are cached locally (default ~/.arxiv-mcp-server/papers; override with the --storage-path flag).",
7+
"logo": "https://avatars.githubusercontent.com/u/15390319?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"documentation",
11+
"search"
12+
],
13+
"tags": [
14+
"arxiv",
15+
"research",
16+
"papers",
17+
"academic",
18+
"science",
19+
"search",
20+
"citations"
21+
],
22+
"transport": {
23+
"type": "stdio",
24+
"command": "uvx",
25+
"args": [
26+
"arxiv-mcp-server"
27+
],
28+
"metadata": {
29+
"inputs": []
30+
}
31+
},
32+
"auth": {
33+
"type": "none",
34+
"instructions": "No authentication required. arXiv is queried over its public API. Papers are stored locally at ~/.arxiv-mcp-server/papers by default; to change the location, add \"--storage-path\" and a directory to the command arguments (e.g. args: [\"arxiv-mcp-server\", \"--storage-path\", \"/path/to/papers\"])."
35+
},
36+
"contributor": {
37+
"name": "blazickjp",
38+
"github": "blazickjp",
39+
"url": "https://github.com/blazickjp/arxiv-mcp-server"
40+
},
41+
"links": {
42+
"repository": "https://github.com/blazickjp/arxiv-mcp-server",
43+
"homepage": "https://github.com/blazickjp/arxiv-mcp-server",
44+
"documentation": "https://github.com/blazickjp/arxiv-mcp-server#readme"
45+
},
46+
"platforms": [
47+
"all"
48+
],
49+
"capabilities": {
50+
"tools": true,
51+
"resources": false,
52+
"prompts": true,
53+
"read_only_mode": false
54+
},
55+
"changelog_url": "https://github.com/blazickjp/arxiv-mcp-server/releases"
56+
}

0 commit comments

Comments
 (0)