Slacking-Biz

Slacking-Biz

24 MCP tools for SEC financials, FRED economics, US Census demographics, and World Bank data via Streamable HTTP.

Category
访问服务器

README

slacking.biz — MCP Server for SEC Financial Data, FRED Economics & Census Demographics

28 MCP tools for SEC financial data, FRED economic indicators, and Census demographics — company health, financials, insider trades, GDP, CPI, employment, housing, ZIP/county data. MCP Streamable HTTP server.

MCP Protocol Smithery Official Registry License: MIT

MCP Endpoint: https://slacking.biz/mcp

Resource URL
📚 Documentation https://slacking.biz/docs
🏪 Marketplace Dashboard https://slacking.biz/marketplace
🔌 MCP Endpoint https://slacking.biz/mcp
🤖 Smithery https://smithery.ai/server/@Th3Slack3r/slacking-mcp
📋 MCP Official Registry https://registry.modelcontextprotocol.io

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-biz
  • Type: streamable-http
  • URL: 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.py

Configure 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
get_company_health Overall financial health score (A-F) with key metrics, ratios, and interpretation
get_trends Financial trends over 6+ quarters — revenue, profit, margins, EPS trajectory
industry_comparison Compare company metrics against industry averages (same SIC code)
get_revenue_segments Revenue breakdown by product/service segments and geography

Financial Statements — GAAP Data

Tool Description
get_income_statement Detailed income statement — revenue, COGS, R&D, SG&A, operating income, net income, EPS
get_balance_sheet Balance sheet — assets, liabilities, equity, cash, debt, retained earnings
get_cash_flow Cash flow statement — operating, investing, financing activities, free cash flow
get_all_financial_data All 500+ GAAP financial data points from SEC XBRL filings in one call

Company Reference & SEC Filings

Tool Description
get_company_profile Company metadata — CIK, SIC code, industry, exchanges, address, website
get_filing_types Categorized summary of all SEC filing types a company has ever filed
search_filings Search SEC filings by form type (10-K, 10-Q, 8-K, Form 4, 13F, S-1, etc.)
get_insider_trades Recent insider trading transactions from SEC Form 4 filings
get_sentiment Sentiment analysis from SEC filing text (Loughran-McDonald financial dictionary)

Multi-Company & Screening

Tool Description
compare_companies Side-by-side financial health comparison of up to 10 companies
screen_companies Screen/filter 120+ companies by profit margin, revenue growth, debt ratio, grade
batch_query 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
worldbank_list_countries List all 55+ available country/region codes and names
worldbank_country_economics Key economic indicators for any country — GDP, GDP growth, population, inflation, unemployment, trade
worldbank_specific_indicator 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)
worldbank_compare_countries 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
get_gdp US GDP data — nominal GDP, real GDP, quarterly growth rates
get_inflation US CPI / inflation data — Consumer Price Index from the Bureau of Labor Statistics
get_rates US interest rates — Federal Funds rate, 30-year mortgage rate, 10-year Treasury yield
get_employment US employment data — unemployment rate, initial jobless claims
get_housing US housing market data — housing starts, 30-year mortgage rates
get_econ_summary 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
get_zip_demographics ZIP code demographics — population, median income, median age, housing units, median home value, median rent, education levels
get_county_demographics 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 28 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-server.py MCP Streamable HTTP server — JSON-RPC 2.0 protocol for remote HTTP access
slacking_mcp_server.py MCP stdio server — all 28 tool definitions using FastMCP
bridge-server.py SkillExchange HTTP bridge
openapi.json OpenAPI 3.0 specification
server.json MCP Official Registry manifest
glama.json Glama MCP server manifest
install.sh One-line MCP client configuration helper

License

MIT — see LICENSE.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选