Langflow Document Q&A Server

by GongRzhe
Verified

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Integrations

  • Enables document question-answering capabilities by connecting to a Langflow backend, allowing users to upload documents and query them using natural language through a Langflow Document Q&A Flow.

Langflow-DOC-QA-服务器

由 Langflow 提供支持的文档问答模型上下文协议服务器

这是一个基于 TypeScript 的 MCP 服务器,实现了一个文档问答系统。它通过提供一个简单的接口来通过 Langflow 后端查询文档,从而演示了 MCP 的核心概念。

先决条件

1. 创建 Langflow 文档问答流程

  1. 打开 Langflow 并从“文档问答”模板创建一个新流程
  2. 使用必要的组件(ChatInput、File Upload、LLM 等)配置您的流程
  3. 保存您的流程

2. 获取 Flow API 端点

  1. 点击 Langflow 右上角的“API”按钮
  2. 从 cURL 命令复制 API 端点 URL 示例: http://127.0.0.1:7860/api/v1/run/<flow-id>?stream=false api/v1/run/?stream=false
  3. 保存此 URL,因为API_ENDPOINT配置需要它

特征

工具

  • query_docs - 查询文档问答系统
    • 将查询字符串作为输入
    • 返回来自 Langflow 后端的响应

发展

安装依赖项:

npm install

构建服务器:

npm run build

对于使用自动重建的开发:

npm run watch

安装

要与 Claude Desktop 一起使用,请添加服务器配置:

在 MacOS 上: ~/Library/Application Support/Claude/claude_desktop_config.json在 Windows 上: %APPDATA%/Claude/claude_desktop_config.json

{ "mcpServers": { "langflow-doc-qa-server": { "command": "node", "args": [ "/path/to/doc-qa-server/build/index.js" ], "env": { "API_ENDPOINT": "http://127.0.0.1:7860/api/v1/run/480ec7b3-29d2-4caa-b03b-e74118f35fac" } } } }

通过 Smithery 安装

要通过Smithery自动为 Claude Desktop 安装文档问答服务器:

npx -y @smithery/cli install @GongRzhe/Langflow-DOC-QA-SERVER --client claude

环境变量

服务器支持以下环境变量进行配置:

  • API_ENDPOINT :Langflow API 服务的端点 URL。如果未指定,则默认为http://127.0.0.1:7860/api/v1/run/480ec7b3-29d2-4caa-b03b-e74118f35fac

调试

由于 MCP 服务器通过 stdio 进行通信,调试起来可能比较困难。我们推荐使用MCP Inspector ,它以包脚本的形式提供:

npm run inspector

检查器将提供一个 URL 来访问浏览器中的调试工具。

📜 许可证

该项目已获得 MIT 许可。

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

支持使用自然语言问题通过 Langflow 后端查询文档,提供与 Langflow 文档问答流交互的界面。

  1. Prerequisites
    1. 1. Create Langflow Document Q&A Flow
    2. 2. Get Flow API Endpoint
  2. Features
    1. Tools
  3. Development
    1. Installation
      1. Installing via Smithery
      2. Environment Variables
      3. Debugging
    2. 📜 License
      ID: trl2y8nuig