FRED Economic Data
STDIOMCP server implementation for accessing Federal Reserve Economic Data API and retrieving economic data.
MCP server implementation for accessing Federal Reserve Economic Data API and retrieving economic data.
Here's the README formatted in proper markdown:
A Model Context Protocol (MCP) server implementation for accessing the Federal Reserve Economic Data (FRED) API. This server provides tools to search and retrieve economic data series from FRED.
Clone the repository:
git clone https://github.com/kablewy/fred-mcp-server cd fred-mcp-server
Install dependencies:
npm install
Copy the .env.example
file to .env
and add your FRED API key:
FRED_API_KEY=your_api_key_here
Run the server in development mode:
npm run dev
Build the project:
npm run build
Start the server:
npm start
The server provides the following FRED API tools:
Search for economic data series using various parameters.
Retrieve observations for a specific economic data series with options for:
fred-mcp-server/
├── src/
│ ├── index.ts # Server entry point
│ ├── tools.ts # Tool implementations
│ └── types.ts # TypeScript interfaces
├── package.json
├── tsconfig.json
└── .env
Run the test suite:
npm test
[Your chosen license]
[Your contribution guidelines]