arxiv mcp server for VS Code
io.github.blazickjp/arxiv-mcp-server
Search arXiv papers, download full text, semantic search, citation graphs, and alerts via MCP.
client:VS Code
transport:stdio
runtime:pypi
Install arxiv mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "arxiv-storage-path",
"description": "ARXIV_STORAGE_PATH",
"password": true
}
],
"servers": {
"arxiv-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"arxiv-mcp-server"
],
"env": {
"ARXIV_STORAGE_PATH": "${input:arxiv-storage-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs