self-mcp-server
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., "@self-mcp-serverget the latest CPI inflation 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.
self-mcp-server
FastMCP server for querying FRED financial and macroeconomic data plus AKShare A-share stock basics.
Design doc:
Setup
uv sync
$env:FRED_API_KEY = ""
uv run python main.pyAlternatively, create a local .env file from .env.example:
Copy-Item .env.example .envThen set FRED_API_KEY in .env. The server loads it from environment variables via python-dotenv; the key is never exposed as a tool parameter.
Related MCP server: FRED MCP Server
Local MCP Loader Demo
This repo also includes a small local MCP loader demo. The config is in
deployments/mcp.local.yaml and follows the same simple stdio shape used by
Codex/OpenCode-style MCP configs: server name plus command, args, env,
and optional env_files.
The demo loads:
fred: this local FRED MCP server via.venv/Scripts/python.exe main.pygithub: the local Docker imagedocker.xuanyuan.run/mcp/github:latest
Prepare local secrets:
Copy-Item .env.example .env
Copy-Item deployments/github-mcp/.env.example deployments/github-mcp/.envSet FRED_API_KEY in .env and GITHUB_PERSONAL_ACCESS_TOKEN in
deployments/github-mcp/.env.
Run the demo:
.venv\Scripts\python.exe scripts\demo_load_mcp_servers.pyIt initializes both MCP servers, lists their tools, and calls one sample tool on each server.
For HTTP mode, these can also live in .env:
MCP_TRANSPORT=http
MCP_HOST=127.0.0.1
MCP_PORT=8765
MCP_PATH=/mcp
MCP_STATELESS_HTTP=true
MCP_JSON_RESPONSE=trueHTTP mode for curl-based E2E checks:
$env:MCP_TRANSPORT = "http"
$env:MCP_HOST = "127.0.0.1"
$env:MCP_PORT = "8765"
$env:MCP_PATH = "/mcp"
uv run python main.pyTools
fred_search_seriesfred_get_seriesfred_get_observationsfred_get_latest_observationfred_get_vintage_datesfred_get_canonical_indicatorsfred_get_macro_snapshotakshare_stock_zh_a_code_nameakshare_stock_profile_cninfoakshare_stock_valuation_emakshare_stock_financial_abstractakshare_stock_basic_metrics
All tools return a common envelope:
{
"ok": true,
"data": {},
"meta": {
"source": "FRED",
"endpoint": "series/observations",
"cached": false,
"fetched_at": "2026-05-13T12:00:00Z"
},
"request": {},
"warnings": []
}This 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.
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that provides tools to search and retrieve economic data series from the Federal Reserve Economic Data (FRED) API.Last updated245511AGPL 3.0
- Flicense-qualityDmaintenanceA Model Context Protocol server that provides access to Federal Reserve Economic Data (FRED), enabling users to retrieve, analyze, and compare economic indicators and time series data through natural language.Last updated2
- Flicense-qualityDmaintenanceAn MCP server that wraps the Federal Reserve Economic Data (FRED) API, providing access to over 800,000 economic time series like GDP and unemployment. It enables AI agents to search for data, retrieve metadata, and fetch historical observations directly from the St. Louis Fed.Last updated
- AlicenseBqualityCmaintenanceAn MCP server that provides access to the full FRED API (Federal Reserve Economic Data), including the Maps API for regional and geographic data.Last updated332MIT
Related MCP Connectors
MCP server for US Treasury Fiscal Data — debt, interest rates, exchange rates, and spending.
Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP.
Macro indicators from World Bank, FRED, IMF, and OECD via unified query surface.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/RyanWang945/self-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server