文档导航服务

myalone/fluent
Hosted
1 Stars 2.4k 次浏览 transfer 更新于 2026-08-23
该服务暂未提供标准配置,请参考 README 手动接入

可用工具 (3 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

search_help 2 个参数 需填 1 项

必填参数:query

list_topics

该工具无需必填参数,直接调用即可

get_manual_link 2 个参数 需填 1 项

必填参数:manual

服务介绍

文档导航服务 fluent

一个帮助AI助手高效导航ANSYS Fluent在线文档的模型上下文协议(MCP)服务器,提供智能URL导航、预映射主题路径和官方文档链接。
null## 工具列表 Tool List

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

工具 Tool 描述 Description
search_help Find ANSYS Fluent documentation URLs for your query. This tool helps you navigate to the right online documentation. Use WebFetch to retrieve the actual content from the returned URLs. Args: query: Search term (e.g., "flamelet model", "read case", "turbulence") max_suggestions: Maximum manual section suggestions to return (default: 3) Returns: URLs and navigation hints for finding the documentation
list_topics List common Fluent topics with quick documentation links. Returns: List of pre-mapped topics for faster navigation
get_manual_link Get direct link to a specific Fluent manual or section. Args: manual: Manual name (user_guide, tui, theory, udf) section: Optional section path (e.g., "turbulence", "file/read-case") Returns: Direct URL to the manual or section

检查服务 ## Inspector

工具在线测试: https://mcp.xiaobenyang.com/inspector/1777419075828739

Online Tool test https://mcp.xiaobenyang.com/inspector/1777419075828739

服务配置 MCP Server Config

如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?

访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY
Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.

SSE

{
  "mcpServers": {
    "文档导航服务": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "sse",
      "url": "https://mcp.xiaobenyang.com/1777419075828739/sse"
    }
  }
}

STREAMABLE HTTP

{
  "mcpServers": {
    "文档导航服务": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "streamable_http",
      "url": "https://mcp.xiaobenyang.com/1777419075828739/mcp"
    }
  }
}

STDIO

{
    "mcpServers": {
        "文档导航服务": {
          "command": "npx",
          "args": [
            "-y",
            "xiaobenyang-mcp"
          ],
          "env": {
            "XBY_APIKEY": "<YOUR_XBY_APIKEY>",
            "mcpId": "1777419075828739",
          },
          "transport": "stdio"
        }
      }
}

相关 MCP 服务