
FindingAlpha AI MCP Server

2025.04.24
0
TypeScript股票分析金融数据处理金融服务
FindingAlpha AI MCP Server 是一个为公开交易股票提供基础分析和处理的模型上下文协议服务器。它提供了多种工具,用于分析股票的分段收入、国会交易等数据。
View on GitHub
Overview
基本能力
产品定位
FindingAlpha AI MCP Server 是一个专门为公开交易股票提供基础分析和处理的模型上下文协议服务器。
核心功能
- 提供分段收入分析
- 提供国会交易数据查询(按姓名或股票代码)
适用场景
- 股票基本面分析
- 国会交易行为研究
- 金融数据整合应用
API端点
- Segmented Revenue
- 端点:
segmented-revenue
-
参数:
ticker
(字符串) - 股票代码(如AAPL) -
Congress Trades by Name
- 端点:
congress-trades-by-name
-
参数:
name
(字符串) - 国会议员名字(如nancy) -
Congress Trades by Ticker
- 端点:
congress-trades-by-ticker
- 参数:
ticker
(字符串) - 股票代码(如AAPL)
测试能力
- 集成测试
- 单元测试
使用教程
使用依赖
- Node.js 18或更高版本
- npm
安装教程
通过Smithery安装
npx -y @smithery/cli install findingalpha-ai-mcp --client claude
通过npm安装
npm install findingalpha-ai-mcp
开发设置
- 安装依赖:
npm install
- 构建服务器:
npm run build
- 开发模式(自动重建):
npm run watch
调试方式
# 运行所有测试
npm test
# 仅运行客户端集成测试
npm run test:client
# 仅运行单元测试
npm run test:unit