fred-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@fred-mcpget the latest GDP growth rate"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FRED MCP Server
An MCP server for the Federal Reserve Economic Data (FRED) API.
Features
Search for economic data series.
Retrieve data points for series.
Explore Categories, Releases, Sources, and Tags.
Pagination support for large datasets.
Option to save data as JSON files.
Related MCP server: FRED Economic MCP Server
Configuration
Set the FRED_API_KEY environment variable to your FRED API key.
Usage
Run with uvx (if published):
uvx fred-data-mcpInstallation from PyPI
Once published, you can install and run directly:
pip install fred-data-mcp
# or
uvx fred-data-mcpClaude Desktop Configuration
To use this server with the Claude Desktop app, add the following to your claude_desktop_config.json:
Published Package (Recommended)
If you have published the package to PyPI, you can key off the package name directly:
{
"mcpServers": {
"fred": {
"command": "uvx",
"args": [
"fred-data-mcp"
],
"env": {
"FRED_API_KEY": "your_api_key_here"
}
}
}
}Local Development
If you are running from the source code repository:
{
"mcpServers": {
"fred": {
"command": "uvx",
"args": [
"--from",
"/absolute/path/to/fred-mcp",
"fred-data-mcp"
],
"env": {
"FRED_API_KEY": "your_api_key_here"
}
}
}
}Development
Running the MCP Inspector
To test the server locally with the MCP Inspector:
Windows (PowerShell):
$env:FRED_API_KEY = "your_api_key_here"
.\run-inspector.ps1Bash:
export FRED_API_KEY="your_api_key_here"
./run-inspector.shAlternatively, run the command directly:
npx @modelcontextprotocol/inspector uv run fred-data-mcp
## Publication
### Publishing to PyPI
A helper script `publish.ps1` is provided to automate version bumping and publication.
**Requirements:**
- `uv` installed.
- PyPI credentials configured (e.g., via `~/.pypirc` or environment variables `TWINE_USERNAME` and `TWINE_PASSWORD`).
**Usage (Windows PowerShell):**
```powershell
# Bump patch version and publish
.\publish.ps1 patchUsage (Bash):
# Bump patch version and publish
./publish.sh patchTo test the build process without uploading, use the -DryRun (PS) or --dry-run (Bash) flag:
.\publish.ps1 patch -DryRun
# or
./publish.sh patch --dry-runThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fritzprix/fred-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server