MCP Server
io.github.stefanoamorelli/fred-mcp-server MCP Server
io.github.stefanoamorelli/fred-mcp-server
What is the io.github.stefanoamorelli/fred-mcp-server MCP server?
Federal Reserve Economic Data (FRED) MCP Server - Access all 800,000+ economic time series
How to install io.github.stefanoamorelli/fred-mcp-server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
FRED_API_KEYrequiredsecretYour FRED API key to access the API
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"fred-mcp-server": {
"command": "npx",
"args": [
"-y",
"fred-mcp-server"
],
"env": {
"FRED_API_KEY": "<YOUR_FRED_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"fred-mcp-server": {
"command": "npx",
"args": [
"-y",
"fred-mcp-server"
],
"env": {
"FRED_API_KEY": "<YOUR_FRED_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"fred-mcp-server": {
"command": "npx",
"args": [
"-y",
"fred-mcp-server"
],
"env": {
"FRED_API_KEY": "<YOUR_FRED_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"fred-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"fred-mcp-server"
],
"env": {
"FRED_API_KEY": "<YOUR_FRED_API_KEY>"
}
}
}
}Claude Code
claude mcp add fred-mcp-server --env FRED_API_KEY=<YOUR_FRED_API_KEY> -- npx -y fred-mcp-serverRelated MCP servers
SEC EDGAR MCP server that provides access to the US public filings through the US SEC EDGAR API
View repository →