# 文献综述助手
## 基本信息
- Slug: `myalone-lit-mcp`
- Source: modelscope
- Publisher: myalone/lit-mcp
- Categories: developer-tools / knowledge-and-memory
- Hosted: Yes
- License: Unknown
- Source URL: https://www.modelscope.cn/mcp/servers/myalone/lit-mcp
## 简介
一个强大的模型上下文协议（MCP）服务器，提供对学术文献数据库的无缝访问，帮助研究人员使用LLM和MCP客户端（如Claude、Cursor等）加速文献综述过程。
## 安装提示

```bash
### STREAMABLE HTTP ```json { "mcpServers": { "文献综述助手": { "headers": { "XBY-APIKEY": "<YOUR_XBY_APIKEY>" }, "type": "streamable_http", "url": "https://mcp.xiaobenyang.com/1777419061413891/mcp" } } }
```

## MCP Server 详情

# 文献综述助手 lit-mcp

一个强大的模型上下文协议（MCP）服务器，提供对学术文献数据库的无缝访问，帮助研究人员使用LLM和MCP客户端（如Claude、Cursor等）加速文献综述过程。
null## 工具列表 Tool List

本MCP服务封装下列工具，可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具，可让模型通过标准化接口调用以下功能。

| 工具 Tool   | 描述 Description         |
|-------|--------------------|
| arxiv_search | Search for papers on arXiv. |
| dblp_search | Search DBLP database for computer science papers. |


## 检查服务 ## Inspector

工具在线测试： [https://mcp.xiaobenyang.com/inspector/1777419061413891](https://mcp.xiaobenyang.com/inspector/1777419061413891)

Online Tool test [https://mcp.xiaobenyang.com/inspector/1777419061413891](https://mcp.xiaobenyang.com/inspector/1777419061413891)

## 服务配置 MCP Server Config


> #### 如何获取 XBY-APIKEY ？ How to get XBY-APIKEY ?
> 访问小笨羊科技网站 [https://xiaobenyang.com](https://xiaobenyang.com)，注册用户即可获得APIKEY
> Visit XiaoBenYang website [https://xiaobenyang.com](https://xiaobenyang.com), register and get the APIKEY.

### SSE
```json
{
  "mcpServers": {
    "文献综述助手": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "sse",
      "url": "https://mcp.xiaobenyang.com/1777419061413891/sse"
    }
  }
}
```
### STREAMABLE HTTP
```json
{
  "mcpServers": {
    "文献综述助手": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "streamable_http",
      "url": "https://mcp.xiaobenyang.com/1777419061413891/mcp"
    }
  }
}
```
### STDIO
```json
{
    "mcpServers": {
        "文献综述助手": {
          "command": "npx",
          "args": [
            "-y",
            "xiaobenyang-mcp"
          ],
          "env": {
            "XBY_APIKEY": "<YOUR_XBY_APIKEY>",
            "mcpId": "1777419061413891",
          },
          "transport": "stdio"
        }
      }
}

```

