Slacking-Biz
slacking.biz — MCP Server for SEC Financial Data, FRED Economics & Census Demographics
75 MCP tools for SEC financial data, IRS nonprofit 990s, FRED economic indicators, Census demographics, US Debt & Treasury data, UK Companies House company/KYB data, and UK Companies House company/KYB data, and openFDA health data — company health, financials, insider trades, GDP, CPI, employment, housing, ZIP/county data, national debt, interest rates. MCP Streamable HTTP server.
MCP Endpoint: https://slacking.biz/mcp
Resource | URL |
📚 Documentation | |
🏪 Marketplace Dashboard | |
🔌 MCP Endpoint |
|
🤖 Smithery | |
📋 MCP Official Registry |
Table of Contents
MCP Installation: Streamable HTTP + Stdio
Streamable HTTP (Recommended — No Local Installation)
The slacking.biz MCP server is hosted at https://slacking.biz/mcp. Configure your MCP client:
Claude Desktop:
{
"mcpServers": {
"slacking-biz": {
"type": "streamable-http",
"url": "https://slacking.biz/mcp"
}
}
}Cursor: Settings → Features → MCP Servers → Add:
Name:
slacking-bizType:
streamable-httpURL:
https://slacking.biz/mcp
Generic MCP client:
{
"mcpServers": {
"slacking-biz": {
"type": "streamable-http",
"url": "https://slacking.biz/mcp"
}
}
}Stdio (Local Python Server)
Run the MCP server locally with stdio transport:
# Install dependencies
pip install mcp httpx
# Run the server (requires SLACKING_API_KEY)
export SLACKING_API_KEY=your_key_here
python3 slacking_mcp_server.pyConfigure your client:
{
"mcpServers": {
"slacking-biz": {
"command": "python3",
"args": ["/path/to/slacking_mcp_server.py"],
"env": {
"SLACKING_API_KEY": "your_key_here"
}
}
}
}SEC Financial Data Tools (16) — Company Research
Analyze US public companies using SEC EDGAR filings (10-K, 10-Q, 8-K, Form 4, Form 13F). Covers 120+ major companies across 51 industries.
Financial Health & Ratios
Tool | Description |
| Overall financial health score (A-F) with key metrics, ratios, and interpretation |
| Financial trends over 6+ quarters — revenue, profit, margins, EPS trajectory |
| Compare company metrics against industry averages (same SIC code) |
| Revenue breakdown by product/service segments and geography |
Financial Statements — GAAP Data
Tool | Description |
| Detailed income statement — revenue, COGS, R&D, SG&A, operating income, net income, EPS |
| Balance sheet — assets, liabilities, equity, cash, debt, retained earnings |
| Cash flow statement — operating, investing, financing activities, free cash flow |
| All 500+ GAAP financial data points from SEC XBRL filings in one call |
Company Reference & SEC Filings
Tool | Description |
| Company metadata — CIK, SIC code, industry, exchanges, address, website |
| Categorized summary of all SEC filing types a company has ever filed |
| Search SEC filings by form type (10-K, 10-Q, 8-K, Form 4, 13F, S-1, etc.) |
| Recent insider trading transactions from SEC Form 4 filings |
| Sentiment analysis from SEC filing text (Loughran-McDonald financial dictionary) |
Multi-Company & Screening
Tool | Description |
| Side-by-side financial health comparison of up to 10 companies |
| Screen/filter 120+ companies by profit margin, revenue growth, debt ratio, grade |
| Query multiple tickers and endpoints in a single batch request |
World Bank International Data Tools (4)
Access global economic indicators for 55+ countries via the World Bank Open Data API (CC BY 4.0).
Tool | Description |
| List all 55+ available country/region codes and names |
| Key economic indicators for any country — GDP, GDP growth, population, inflation, unemployment, trade |
| Time-series data for a specific indicator (14 indicators: gdp, gdp_growth, gdp_per_capita, population, inflation_cpi, unemployment, exports, imports, fdi, poverty, life_expectancy, education_expenditure) |
| Compare GDP, GDP growth, and population across multiple countries |
FRED US Economics Data Tools (6) — Economic Indicators
US macroeconomic data sourced from the Federal Reserve Economic Data (FRED) API.
Tool | Description |
| US GDP data — nominal GDP, real GDP, quarterly growth rates |
| US CPI / inflation data — Consumer Price Index from the Bureau of Labor Statistics |
| US interest rates — Federal Funds rate, 30-year mortgage rate, 10-year Treasury yield |
| US employment data — unemployment rate, initial jobless claims |
| US housing market data — housing starts, 30-year mortgage rates |
| All key US economic indicators in one call — GDP, CPI, Fed funds rate, unemployment, housing |
Census Demographics Data Tools (2)
US demographics data sourced from the US Census Bureau American Community Survey (ACS) 5-year estimates.
Tool | Description |
| ZIP code demographics — population, median income, median age, housing units, median home value, median rent, education levels |
| County demographics by FIPS code — population, median income, median age, housing units, median home value, median rent, education levels |
Quick Start & Examples
Test the MCP endpoint (initialize handshake)
curl -X POST https://slacking.biz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":"1","method":"initialize","params":{"protocolVersion":"2025-11-25","capabilities":{},"clientInfo":{"name":"client","version":"1.0"}}}'List all 75 available tools
curl -X POST https://slacking.biz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":"2","method":"tools/list","params":{}}'Call a tool — get Apple's financial health
curl -X POST https://slacking.biz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":"3","method":"tools/call","params":{"name":"get_company_health","arguments":{"ticker":"AAPL"}}}'Get insider trades for Tesla
curl -X POST https://slacking.biz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":"4","method":"tools/call","params":{"name":"get_insider_trades","arguments":{"ticker":"TSLA","limit":5}}}'Compare three companies side-by-side
curl -X POST https://slacking.biz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":"5","method":"tools/call","params":{"name":"compare_companies","arguments":{"tickers":["AAPL","MSFT","GOOGL"]}}}'Get US economic indicators (GDP, inflation, rates, employment, housing)
# All indicators in one call
curl -X POST https://slacking.biz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":"6","method":"tools/call","params":{"name":"get_econ_summary","arguments":{}}}'
# Specific economic data
curl -X POST https://slacking.biz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":"7","method":"tools/call","params":{"name":"get_gdp","arguments":{}}}'Get demographics for a ZIP code
curl -X POST https://slacking.biz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":"8","method":"tools/call","params":{"name":"get_zip_demographics","arguments":{"zip_code":"90210"}}}'Data Sources
Data Source | Coverage | Update Frequency |
SEC EDGAR — 10-K, 10-Q, 8-K, Form 4, Form 13F | 120+ major US public companies | Continuous (filings processed daily) |
FRED — Federal Reserve Economic Data | US GDP, CPI, interest rates, employment, housing | Updated as released by BLS, Fed, Census |
US Census Bureau — American Community Survey (ACS) | ZIP code and county demographics | Annual (5-year estimates) |
World Bank — Open Data API | 55+ countries, 14 economic indicators | Quarterly/Annual |
Repository Contents
File | Description |
| MCP Streamable HTTP server — JSON-RPC 2.0 protocol for remote HTTP access |
| MCP stdio server — all 51 tool definitions using FastMCP |
| SkillExchange HTTP bridge |
| OpenAPI 3.0 specification |
| MCP Official Registry manifest |
| Glama MCP server manifest |
| One-line MCP client configuration helper |
License
MIT — see LICENSE.
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/Th3Slack3r/slacking-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server