by reuvenaor
Access economic and birth rate data in Israel with CBS API: consumer prices, housing, inflation. Supports JSON & XML for
Retrieves economic data from Israel's Central Bureau of Statistics API, including consumer price indices, housing market data, and inflation calculations.
Israel Statistics (CBS) is a community-built MCP server published by reuvenaor that provides AI assistants with tools and capabilities via the Model Context Protocol. Access economic and birth rate data in Israel with CBS API: consumer prices, housing, inflation. Supports JSON & XML for It is categorized under finance, analytics data. This server exposes 9 tools that AI clients can invoke during conversations and coding sessions.
You can install Israel Statistics (CBS) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Israel Statistics (CBS) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Israel Statistics (CBS) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, Israel Statistics (CBS) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Israel Statistics (CBS) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Israel Statistics (CBS) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Israel Statistics (CBS) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We wired Israel Statistics (CBS) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Israel Statistics (CBS) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, Israel Statistics (CBS) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We wired Israel Statistics (CBS) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Israel Statistics (CBS) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
showing 1-10 of 46
A Model Context Protocol (MCP) server that provides programmatic access to the Israeli Central Bureau of Statistics (CBS) price indices and economic data. Built with TypeScript, this server offers 8 comprehensive tools for retrieving, analyzing, and calculating Israeli economic statistics.
// .mcp.json
{
"israel-statistics-mcp": {
"command": "docker",
"args": ["run", "--rm", "-i", "reuvenaor/israel-statistics-mcp:latest"]
}
}
// .mcp.json
{
"israel-statistics-mcp": {
"command": "npx",
"args": ["@reuvenorg/israel-statistics-mcp"]
}
}
# Quick setup
claude mcp add --scope project israel-statistics-mcp npx @reuvennaor85/israel-statistics-mcp
| Tool | Description | Key Parameters |
|---|---|---|
get_index_topics | Browse all available index categories and topics | period, searchText, lang |
get_catalog_chapters | Get all index chapters (CPI, Housing, etc.) | lang, pagesize |
get_chapter_topics | Get topics within a specific chapter | chapterId, lang |
get_subject_codes | Get index codes for a specific topic | subjectId, searchText |
get_index_data | Retrieve historical price data for an index | code, startPeriod, endPeriod |
get_index_calculator | Calculate inflation-adjusted values | indexCode, value, fromDate, toDate |
get_main_indices | Get current main economic indices | oldFormat, lang |
get_all_indices | Get comprehensive index data with filtering | chapter, oldFormat |
src/
├── index.ts # MCP server entry point with tool registration
├── mcp/
│ ├── handlers/ # 8 MCP tool handlers
│ │ ├── getIndexTopics.ts # Browse available indices
│ │ ├── getCatalogChapters.ts # Get index chapters
│ │ ├── getChapterTopics.ts # Topics by chapter
│ │ ├── getSubjectCodes.ts # Index codes by topic
│ │ ├── getIndexData.ts # Historical price data
│ │ ├── getIndexCalculator.ts # Inflation calculator
│ │ ├── getMainIndices.ts # Main indices (current + by period)
│ │ └── getAllIndices.ts # All indices with filtering
│ └── helpers/
│ ├── fetcher.ts # Secure CBS API client with XML/JSON parsing
│ └── housingWarnings.ts # Housing market data warnings
├── schemas/ # Type-safe Zod validation schemas
│ ├── request.schema.ts # Input validation schemas
│ ├── response.schema.ts # Output validation schemas
│ ├── base.schema.ts # Reusable object schemas
│ └── shared.schema.ts # Common enums and types
└── utils/
├── registry-security.ts # Security utilities
└── spinner.ts # MCP progress notifications
The server implements complete coverage of the CBS Israel Statistics API:
GET /index/catalog/tree → get_index_topicsGET /index/catalog/catalog → get_catalog_chaptersGET /index/catalog/chapter → get_chapter_topicsGET /index/catalog/subject → get_subject_codesGET /index/data/price → get_index_dataGET /index/data/calculator/{id} → get_index_calculatorGET /index/data/price_selected → get_main_indicesGET /index/data/price_selected_b → get_main_indices_by_periodGET /index/data/price_all → get_all_indices| Chapter | Description | Examples |
|---|---|---|
a | Consumer Price Index | Food, clothing, housing costs |
aa | Housing Market Index | Real estate prices (bi-monthly) |
b | Producer Price Index - Industrial | Manufacturing output prices |
ba | Producer Price Index - Exports | Export prices for industry |
bb | Producer Price Index - Services | Service industry prices |
c | Residential Building Input | Construction material costs |
ca | Commercial Building Input | Office building costs |
d | Road Construction Input | Infrastructure costs |
e | Agriculture Input | Agricultural input costs |
f | Bus Input | Public transportation costs |
fa | Public Minibus Input | Public transport vehicle costs |
The server automatically detects and warns about Housing Price Index data:
any types# Development
pnpm dev # Watch mode development
pnpm build # Production build
pnpm typecheck # TypeScript validation
# Testing
pnpm test # Run all tests
pnpm test:dev # Development mode testing
# Quality
pnpm lint # Lint code
pnpm lint:fix # Fix linting issues
pnpm format:check # Check formatting
pnpm format:write # Apply formatting
# Docker
docker build -t reuvenaor/israel-statistics-mcp:latest -f Dockerfile .
@modelcontextprotocol/sdk: MCP server implementationzod: Type-safe validation and schema inferencenode-fetch: HTTP client for CBS API callsxml2js: XML response parsingtypescript: Type system and compilationtsconfig.json: TypeScript configuration with strict settingseslint.config.js: Modern ESLint flat configurationprettier.config.cjs: Code formatting rulesvitest.config.ts: Test framework configurationtsup.config.ts: Build tool configurationDockerfile: Multi-stage container build// Input
{ lang: "en", searchText: "housing", period: "M" }
// Output
{
topics: [
{
chapterId: "aa",
chapterName: "Housing Market Index",
subject: [
{
subjectId: 123,
subjectName: "Apartment Prices",
code: [
{
codeId: 180010,
codeName: "Housin
---
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.