Langflow-DOC-QA-服务器
由 Langflow 提供支持的文档问答模型上下文协议服务器
这是一个基于 TypeScript 的 MCP 服务器,实现了一个文档问答系统。它通过提供一个简单的接口来通过 Langflow 后端查询文档,从而演示了 MCP 的核心概念。
先决条件
1. 创建 Langflow 文档问答流程
- 打开 Langflow 并从“文档问答”模板创建一个新流程
- 使用必要的组件(ChatInput、File Upload、LLM 等)配置您的流程
- 保存您的流程
2. 获取 Flow API 端点
- 点击 Langflow 右上角的“API”按钮
- 从 cURL 命令复制 API 端点 URL 示例:
http://127.0.0.1:7860/api/v1/run/<flow-id>?stream=false
api/v1/run/?stream=false - 保存此 URL,因为
API_ENDPOINT
配置需要它
特征
工具
query_docs
- 查询文档问答系统- 将查询字符串作为输入
- 返回来自 Langflow 后端的响应
发展
安装依赖项:
构建服务器:
对于使用自动重建的开发:
安装
要与 Claude Desktop 一起使用,请添加服务器配置:
在 MacOS 上: ~/Library/Application Support/Claude/claude_desktop_config.json
在 Windows 上: %APPDATA%/Claude/claude_desktop_config.json
通过 Smithery 安装
要通过Smithery自动为 Claude Desktop 安装文档问答服务器:
环境变量
服务器支持以下环境变量进行配置:
API_ENDPOINT
:Langflow API 服务的端点 URL。如果未指定,则默认为http://127.0.0.1:7860/api/v1/run/480ec7b3-29d2-4caa-b03b-e74118f35fac
。
调试
由于 MCP 服务器通过 stdio 进行通信,调试起来可能比较困难。我们推荐使用MCP Inspector ,它以包脚本的形式提供:
检查器将提供一个 URL 来访问浏览器中的调试工具。
📜 许可证
该项目已获得 MIT 许可。
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
支持使用自然语言问题通过 Langflow 后端查询文档,提供与 Langflow 文档问答流交互的界面。
Related MCP Servers
- AsecurityFlicenseAqualityEnables interaction with the Metal Framework by providing documentation search and code generation capabilities using natural language queries.Last updated -22TypeScript
- -securityFlicense-qualityThis server provides an API to query Large Language Models using context from local files, supporting various models and file types for context-aware responses.Last updated -1TypeScript
- AsecurityAlicenseAqualityEnables Claude to interact with Webflow's APIs for managing sites, retrieving information, and executing tasks using natural language.Last updated -24TypeScriptMIT License
- -securityFlicense-qualityA natural language interface for MLflow that allows users to query and manage their machine learning experiments and models using plain English through the Model Context Protocol.Last updated -3Python