Skip to main content
Glama

Langflow Document Q&A Server

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 许可。

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

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

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

  1. 先决条件
    1. 创建 Langflow 文档问答流程
    2. 获取 Flow API 端点
  2. 特征
    1. 工具
  3. 发展
    1. 安装
      1. 通过 Smithery 安装
      2. 环境变量
      3. 调试
    2. 📜 许可证

      Related MCP Servers

      • A
        security
        F
        license
        A
        quality
        Enables interaction with the Metal Framework by providing documentation search and code generation capabilities using natural language queries.
        Last updated -
        2
        2
        TypeScript
      • -
        security
        F
        license
        -
        quality
        This 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 -
        1
        TypeScript
      • A
        security
        A
        license
        A
        quality
        Enables Claude to interact with Webflow's APIs for managing sites, retrieving information, and executing tasks using natural language.
        Last updated -
        2
        4
        TypeScript
        MIT License
        • Apple
        • Linux
      • -
        security
        F
        license
        -
        quality
        A 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 -
        3
        Python
        • Linux
        • Apple

      View all related MCP servers

      MCP directory API

      We provide all the information about MCP servers via our MCP API.

      curl -X GET 'https://glama.ai/api/mcp/v1/servers/GongRzhe/Langflow-DOC-QA-SERVER'

      If you have feedback or need assistance with the MCP directory API, please join our Discord server