feat(hy3-mcp-data-analysis): 提交基于 Tencent Hunyuan Hy3 的数据分析 MCP Server (Rhinobird 2026 #3)#133
Open
ilovecplusplus230 wants to merge 1 commit into
Open
Conversation
- load_dataset: CSV/JSON/JSONL parser with schema + stats + preview - web_search: Tavily API -> DuckDuckGo fallback search - hy3_analyze: Hy3 deep reasoning for data analysis reports - hy3_chart_guide: chart recommendation + Python plotting code gen Includes smoke tests, MCP protocol test client, Windows launcher, client config examples (Cline/Cursor/CodeBuddy), and full docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
关联 Issue
Closes #3 (#3)
项目简介
Hy3 MCP Data Analysis Server(hy3-mcp-data-analysis)是一个基于 Model Context Protocol (https://modelcontextprotocol.io) 的本地 stdio MCP Server。它调用 腾讯混元 Hy3 API,把 CSV / JSON
等结构化数据转化为统计分析报告和可视化图表方案,并内置网络搜索能力辅助分析。
使用 MCP Python SDK(FastMCP)实现,pip install 即可运行,支持 CodeBuddy、Cursor、Cline、Roo Code 等客户端即插即用。
核心功能
安装与验证
cd issue3
pip install -r requirements.txt
cp .env.example .env # 填入 HY3_API_KEY
python smoke_test.py # 直接函数测试
python mcp_client_check.py # MCP 协议端到端测试
验证结果:
客户端配置
已提供 MCP 客户端配置示例,位于 issue3/examples/:
┌─────────────────────────┬────────────────────────────┐
│ 文件 │ 客户端 │
├─────────────────────────┼────────────────────────────┤
│ cline_mcp_settings.json │ Cline (VS Code) │
├─────────────────────────┼────────────────────────────┤
│ cursor-mcp.json │ Cursor IDE │
├─────────────────────────┼────────────────────────────┤
│ codebuddy-mcp.json │ CodeBuddy / WorkBuddy │
├─────────────────────────┼────────────────────────────┤
│ mcp-inspector.md │ MCP Inspector 官方调试工具 │
└─────────────────────────┴────────────────────────────┘
RhinoBird 2026 提交清单