AgentStack
MCP verified MIT Self-run

Israeli Cbs Mcp

mcp-amirrosi-israeli-cbs-mcp · by amirrosi

An Model Context Protocol (MCP) server that provides access to statistical data from the Israeli Central Bureau of Statistics (CBS).

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add mcp-amirrosi-israeli-cbs-mcp

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Israeli Cbs Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Israeli CBS MCP Server

An Model Context Protocol (MCP) server that provides access to statistical data from the Israeli Central Bureau of Statistics (CBS).

It supports both Statistical Series (e.g., Unemployment, GDP) and Price Indices (e.g., CPI, Construction Inputs).

Data Sources & API Documentation

This server retrieves data directly from the official CBS APIs:

Features

  • Hierarchical Exploration: Navigate topics and subtopics (list_main_topics, list_subtopics).
  • Unified Search: Access both Statistical Series and Price Indices.
  • Data Retrieval: Fetch time-series data with year filtering (get_series_data).
  • Smart Caching: Builds a local index for fast lookups and offline navigation.
  • Auto-Refresh: Keeps the cache up-to-date with a background task.

Indexing Behavior

Upon startup, the server traverses the entire CBS catalog to build a comprehensive local index.

  • Duration: This process takes approximately 5 minutes.
  • Cache Size: The resulting index file is about 20MB.
  • Availability: The server is available immediately, but search/navigation tools will report "Index is building" until completion.

Installation

Using uv (Recommended)

uvx israeli-cbs-mcp

From Source

  1. Clone the repository:

``bash git clone https://github.com/amirrosi/israeli-cbs-mcp.git cd israeli-cbs-mcp ``

  1. Install dependencies:

``bash pip install . ``

Configuration

You can configure the server using environment variables:

| Variable | Description | Default | | :--- | :--- | :--- | | CBS_CACHE_DIR | Directory to store the index cache | ~/.cache/cbs_mcp | | CBS_CACHE_DURATION_DAYS | How long to keep the cache before full rebuild | 7 | | CBS_CACHE_REFRESH_INTERVAL | Background refresh interval (seconds) | 86400 (24h) | | CBS_API_TIMEOUT | API timeout in seconds | 30.0 | | CBS_MAX_RETRIES | Number of API retries | 3 |

Usage with Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "cbs": {
      "command": "uvx",
      "args": ["israeli-cbs-mcp"]
    }
  }
}

Tools

  • list_main_topics(lang="he"): List top-level categories.
  • list_subtopics(parent_id, lang="he"): List children of a category.
  • get_series_data(series_id, start_year, end_year, last): Get data points.
  • rebuild_index(lang="he"): Force a manual index rebuild.

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.