安装
uv
使用pip安装
shell
pip install uv -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
cursor/vscode安装、cline安装
- cursor安装
https://cursor.com/cn/home?from=agents - vscode安装
- cline安装

MCP server安装
- arxiv mcp server
https://github.com/blazickjp/arxiv-mcp-server - google scholar mcp server
https://github.com/JackKuo666/Google-Scholar-MCP-Server
MCP server配置for cursor/cline
yaml
{
"mcpServers": {
"arxiv-mcp-server": {
"command": "C:/Users/mario/miniconda3/Scripts/uv.exe",
"args": [
"--directory",
"D:/Mytools/mcp_servers/arxiv-mcp-server/src",
"run",
"arxiv-mcp-server",
"--storage-path",
"D:/data/arxiv_paper"
],
"autoApprove": [
"search_papers",
"download_paper",
"list_papers",
"read_paper"
]
},
"google-scholar": {
"command": "C:/Users/mario/miniconda3/python.exe",
"args": [
"D:/Mytools/mcp_servers/Google-Scholar-MCP-Server/google_scholar_server.py"
],
"env": {},
"disabled": false,
"autoApprove": [
"search_google_scholar_key_words",
"search_google_scholar_advanced",
"get_author_info"
]
}
}
}