- Home
- MCP servers
- Fiscal Data
Fiscal Data
- typescript
17
GitHub Stars
typescript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"quantgeekdev-fiscal-data-mcp": {
"command": "npx",
"args": [
"fiscal-data-mcp"
]
}
}
}You run a practical MCP server that connects to the US Treasury Fiscal Data API to fetch daily treasury statements, access historical data, and generate formatted reports. This server lets you perform specific data lookups and generate ready-to-use outputs through an MCP client.
How to use
You use an MCP client to interact with the Fiscal Data MCP Server. Configure the client to connect via the provided stdio command so you can request the daily treasury statements or generate formatted reports. Practical usage patterns include fetching a statement for a specific date, accessing a short window of historical data, and generating ready-to-share reports for finance reviews.
Practical workflows you can perform:
- Retrieve a daily treasury statement for a given date using the dedicated statement tool.
- Access 30 days of historical treasury data through the resource system, which caches data for quick responses and updates on demand.
- Generate a formatted treasury report for a chosen date using the report prompt to produce ready-to-use output.
How to install
Prerequisites you need before installing:
- Node.js and npm installed on your machine.
- Access to the MCP client configuration file used by your environment (for example, the Claude Desktop config path).
Step-by-step setup:
1) Create or open the MCP client configuration to include the Fiscal Data MCP Server. The following configuration snippet configures the server to run via npx with the fiscal-data-mcp package. This sample assumes you are placing the configuration in your Claude Desktop setup.
2) Save the config file to the appropriate platform path.
3) Start using the MCP client to communicate with the Fiscal Data MCP Server.
{
"mcpServers": {
"fiscal-data": {
"command": "npx",
"args": ["fiscal-data-mcp"]
}
}
}
Notes
This MCP server exposes tools to fetch daily statements, access historical data, and generate reports. Use the MCP client to issue requests such as retrieving a treasury statement for a specific date or generating a report for a chosen day.
Available tools
get_daily_treasury_statement
Fetch treasury statements for a specific date using the Daily Treasury Statements tool.
daily_treasury_report
Generate formatted treasury reports using the daily treasury report prompt.
historical_data_resource
Provide 30 days of historical treasury data via the resource system with auto-cache and on-demand updates.