概述
这 财务数据MCP服务器 演示了连接到美国财政部财政数据API的MCP服务器的实际实现。它展示了:
- 获取特定财务报表的工具
- 历史数据访问资源
- 生成格式化报告的提示
快速开始
1.与Claude Desktop一起安装和使用
将此配置添加到您的Claude Desktop配置文件中:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json 视窗: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"fiscal-data": {
"command": "npx",
"args": ["fiscal-data-mcp"]
}
}
}2.交互示例
配置后,您可以通过Claude与服务器交互:
Human: Can you get the treasury statement for the 20th of September 2023?特性
1.每日财务报表
使用以下工具获取特定日期的资金数据 get_daily_treasury_statement 工具:
// Example usage through Claude
Human: Get the treasury statement for 2024-03-01
Assistant: I'll fetch that information for you using the treasury statement tool.2.历史数据资源
通过资源系统访问30天的历史财务数据:
- 自动缓存1小时
- 按需更新
- 提供格式化的JSON数据
3.报告生成
使用生成格式化的财务报告 daily_treasury_report 提示:
// Example usage through Claude
Human: Generate a treasury report for 2024-03-01
Assistant: I'll use the daily treasury report prompt to create a formatted report...