Back to MCP directory
publicPublicdnsLocal runtime

MCP-for-VuFind

一个基于FastMCP的简易MCP服务器项目,旨在将VuFind的Swagger API集成到LLM(如Sonet)中,使LLM能够通过VuFind搜索文献。

article

README

🚀 范围MCP服务器

这是一个简单的MCP服务器,它基于https://github.com/jlowin/fastmcp 构建,主要目的是让VuFind的Swagger API能够与大型语言模型(如Sonet)实现集成。如此一来,大型语言模型(LLM)就能借助VuFind开展文献搜索工作。

🚀 快速开始

本MCP服务器为大型语言模型与VuFind的Swagger API集成提供了便利,让文献搜索变得更加高效。

✨ 主要特性

  • 支持DAIA和VuFinds Swagger API,具有广泛的兼容性。
  • 可使大型语言模型(如Sonet)利用VuFind进行文献搜索。

📦 安装指南

只需运行以下命令即可完成安装:

pip install -r requierments.txt

📚 详细文档

配置您的API

Claude会在您的本地计算机上执行MCP服务器,并且每个API调用都源自您的系统。这就要求API必须能够从您的本地机器进行访问。您需要在config.ini中定义您的API端点。

配置Claude

若要将Claude Desktop设置为Ghidra MCP客户端,您可以按以下步骤操作:转到Claude -> Settings -> Developer -> Edit Config -> claude_desktop_config.json,并添加以下内容:

{
    "mcpServers": {
      "Vufind": {
        "command": "python",
        "args": [
          "C:/ubmcp/UBBSMCP/server.py ",
          "C:/ubmcp/UBBSMCP/config.ini"
        ]
      }
    }
  }

请根据您的实际情况调整server.pyconfig.ini的路径。

Claude的实际操作

在Claude启动时,界面会显示一个小锤子图标,这表明Claude正在使用一个MCP服务器。您点击小锤子图标,就可以查看exported MCP功能。

exposed MCP Functions

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client