经 AI Skill Hub 精选评估,LangAlpha 获评「推荐使用」。已获得 1.3k 颗 GitHub Star,这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
LangAlpha 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
LangAlpha 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/ginlix-ai/LangAlpha
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"langalpha": {
"command": "npx",
"args": ["-y", "langalpha"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 LangAlpha 执行以下任务... Claude: [自动调用 LangAlpha MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"langalpha": {
"command": "npx",
"args": ["-y", "langalpha"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img src="web/public/logo_words.png" alt="LangAlpha" height="120" /> <br> <strong>A vibe investing agent harness</strong> <br> LangAlpha is built to help interpret financial markets and support investment decisions. <br><br> <img src="https://img.shields.io/badge/python-3.12+-blue.svg" alt="Python 3.12+" /> <a href="https://github.com/langchain-ai/langchain"><img src="https://img.shields.io/badge/LangChain-1c3c3c?logo=langchain&logoColor=white" alt="LangChain" /></a> <img src="https://img.shields.io/badge/license-Apache%202.0-green.svg" alt="License" /> </p>
<p align="center"> <a href="#getting-started">Getting Started</a> • <a href="docs/api/README.md">API Docs</a> • <a href="src/ptc_agent/">Agent Core</a> • <a href="src/server/">Backend</a> • <a href="web/">Web</a> • <a href="libs/ptc-cli/">TUI</a> • <a href="skills/">Skills</a> • <a href="mcp_servers/">MCP</a> </p>
<p align="center"> <video src="https://github.com/user-attachments/assets/56ec23b5-e9af-46ab-8505-66a7dff822a4" autoplay loop muted playsinline width="900"></video> </p> <p align="center"><em>Pin a curated news brief from the dashboard, kick off idea generation, and dispatch parallel subagents to screen the market — then get five long/short pair-trade ideas in an inline interactive dashboard, calibrated to your book.</em></p>
agent.md) that compounds research across sessions and threads. A separate long-term memory store (.agents/user/memory/, .agents/workspace/memory/) persists durable user preferences and cross-sandbox knowledge, and a user-managed memo store (.agents/user/memo/) lets you upload PDFs and markdown research notes that the agent can read on demand.[!TIP] Don't want to self-host? Try the hosted version — it includes full data infrastructure (FMP, real-time market data, cloud sandboxes) out of the box. Bring your own LLM key (BYOK) and start immediately with no setup.
You can start LangAlpha with nothing but Docker — no API keys for data, no cloud sandbox. Just Docker for infrastructure and your own LLM subscription for the AI model.
git clone https://github.com/ginlix-ai/langalpha.git
cd langalpha
make config # interactive wizard — creates .env, configures LLM, data sources, sandbox, and search
make up # starts PostgreSQL, Redis, backend, and frontend
/docs)curl http://localhost:8000/healthFor the full experience, the wizard will prompt you for optional keys — or add them to .env later:
| Key | What It Unlocks |
|---|---|
DAYTONA_API_KEY | Persistent cloud sandboxes with cross-session workspace support ([daytona.io](https://www.daytona.io/)) |
FMP_API_KEY | High-quality fundamentals, macro, SEC filings, options ([free tier available](https://site.financialmodelingprep.com/)) |
SERPER_API_KEY or TAVILY_API_KEY | Web search |
LANGSMITH_API_KEY | Tracing and observability |
[!NOTE] Without external service keys you get a functional but reduced experience: Yahoo Finance provides free price history, fundamentals, earnings, and analyst data, but lacks real-time quotes, intraday tick data, macro economics, and options analytics. The Docker sandbox replaces Daytona cloud sandboxes — full PTC code execution works, but with a downgraded security and isolation. Add keys incrementally to unlock more capabilities.
Run make help to see all available commands. For manual setup without Docker, see CONTRIBUTING.md.
Use LangAlpha from the tools you already work in. The integration gateway relays messages between messaging platforms and the core agent, with each channel receiving responses in its native format. Channel integrations are available exclusively on our hosted service with one-click setup and quick account binding — visit integrations to get started.
| Feature | Slack | Discord | Feishu | Telegram | |
|---|---|---|---|---|---|
| Rich text / markdown | ✅ | ✅ | ✅ | ✅ | 🔜 |
| File upload (user → agent) | ✅ | ✅ | ✅ | ❌ | ➖ |
| File download (agent → user) | ✅ | ✅ | ✅ | ❌ | ➖ |
| Image rendering | ✅ | ✅ | ✅ | ❌ | ➖ |
| Human-in-the-loop interrupts | ✅ | ✅ | ✅ | ⚠️ | ➖ |
| Subagent tracking | ✅ | ✅ | ✅ | ✅ | 🔜 |
| Workspace / model selection | ✅ | ✅ | ✅ | ✅ | 🔜 |
| Automation delivery (outbound) | ✅ | ✅ | ❌ | ➖ | ➖ |
| Simplified account linking | ✅ | ✅ | ❌ | ❌ | ➖ |
| Slash commands | ✅ | ✅ | ✅ | ✅ | ➖ |
Slack and Discord offer native channels and thread-level groups, which map naturally to LangAlpha workspaces and threads — context is managed natively. Telegram and WhatsApp lack these primitives, so they run a simplified orchestration mode. Feishu has full messaging and card-based UI with OAuth coming soon. Telegram has partial support with full coverage coming soon. WhatsApp is planned.
高质量的开源MCP工具,具有较强的实用价值
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
AI Skill Hub 点评:LangAlpha 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | LangAlpha |
| 原始描述 | 开源MCP工具:Claude Code for Finance。⭐1.3k · Python |
| Topics | mcpagentinvestmentlangchainlangraphllmpython |
| GitHub | https://github.com/ginlix-ai/LangAlpha |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-06-09 · 更新时间:2026-06-13 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端