Connect your AI agent to Israeli APIs, government data, and local services
Model Context Protocol (MCP) is an open standard that lets AI agents connect to external data sources and tools. MCP servers expose APIs as structured tools that agents like Claude Code, Cursor, and Windsurf can use directly.
Open standard by Anthropic
Works with Claude Code, Cursor, Windsurf & more
Structured tool definitions with typed parameters
Compose multiple servers for complex workflows
Python-based MCP server for Israeli Government Open Data (data.gov.il) with full CKAN API coverage and built-in data visualization. Beyond standard dataset search and retrieval, it offers dataset profiling (field types, missing values, statistics), interactive Vega-Lite chart generation (histogram, bar, line, scatter), and Leaflet map generation from geographic data. Built with FastMCP and async httpx for optimal performance, with 34+ automated tests.
MCP server enabling AI assistants to search, discover, and analyze thousands of Israeli government datasets from the national open data portal (data.gov.il). Provides tag-based browsing, keyword search in Hebrew and English, dataset metadata retrieval, record-level data extraction, and organization listing. Version 2.1 adds expert analysis prompts for food/nutrition, environmental sustainability, and real estate market domains. Data sources include government ministries, local authorities, and regulatory bodies via CKAN API.
FastMCP interface to Israel's OpenBudget API enabling AI assistants to query the full governmental budget structure, drill into detailed budget items under specific parents, retrieve historical budget data by code, access procurement contracts, and look up support payment information. Includes a general search tool across multiple budget data categories and bridges the OpenBudget/BudgetKey API into a clean MCP tool interface.
MCP interface to the Israeli Knesset (parliament) OData API, providing access to legislative and parliamentary information. Exposes resources for committee data by Knesset number, committee sessions, bills (private, government, committee), and Knesset member information. Tools include bill lookup by ID, bill search by keyword, committee info retrieval, member details, and current Knesset number. Ships with prompt templates for analyzing legislation processes and MK voting records.
MCP server providing AI assistants with direct access to Israeli State Budget data (1997-2025) via the BudgetKey API. Covers budget book data (planned and executed), support programs, individual support payments, procurement contracts, government entities, state revenues, and budget change requests. Offers DatasetInfo for schema discovery, DatasetFullTextSearch for Hebrew/English text search, and DatasetDBQuery for executing PostgreSQL-compatible SQL queries. Hosted as an HTTP endpoint, no local setup required.
Lightweight MCP server for fetching transactions from all major Israeli banks and credit card companies, including Hapoalim, Leumi, Discount, Mizrahi, Visa Cal, Max, Isracard, and more. Leverages the israeli-bank-scrapers library and supports two-factor authentication. Exposes tools to list available banks with their required credentials and fetch transactions with flexible date ranges.
Comprehensive personal finance command center for Israeli banking. Automatically aggregates, categorizes, and analyzes finances from all Israeli banks and credit cards into a unified dashboard with budget tracking, balance projection, recurring payment detection, and installment monitoring. Features intelligent 3-phase auto-categorization, native WhatsApp integration for daily summaries, built-in AI chat via Google Gemini, and MCP endpoint for AI assistant integration with AES-256-GCM encryption.
Secure, local-first personal financial data aggregator for Israeli banks and credit card companies. Built on the israeli-bank-scrapers library, it scrapes transactions from all major Israeli financial institutions and stores them in a locally encrypted SQLite database. Includes MCP tools for fetching transactions, executing safe SQL queries, describing database schemas, and generating monthly expense reports while ensuring financial data never leaves your machine.
Finance assistant that brings Israeli bank data directly to any AI assistant. Combines a headless scraper powered by israeli-bank-scrapers with an MCP server, enabling LLMs to analyze transactions, track spending patterns, detect recurring charges, and provide financial insights. Supports most Israeli banks and credit cards, stores data locally in SQLite, and runs via Docker Compose for easy deployment.
TypeScript MCP server providing comprehensive access to Israeli Central Bureau of Statistics (CBS) price indices and economic data. Covers Consumer Price Index (CPI), Housing Market Index, Producer Price Indices (industrial, exports, services), construction input costs, agriculture, and transportation indices. Features 8 tools including historical data retrieval, inflation-adjusted price linkage calculations, index browsing/search, and automatic warnings for bi-monthly housing data provisionals. Enterprise-grade with Zod validation, rate limiting, and Docker support.
MCP server providing access to both Statistical Series (unemployment, GDP, etc.) and Price Indices (CPI, construction inputs, etc.) from the Israeli Central Bureau of Statistics. Features hierarchical topic exploration, unified search across series and indices, time-series data retrieval with year filtering, and a smart local caching system that builds a comprehensive index of the entire CBS catalog on startup. The cache auto-refreshes daily for up-to-date data access.
Comprehensive MCP server providing AI agents with access to Israel's complete pharmaceutical database from the Ministry of Health. Covers 1,172+ therapeutic categories (ATC classification), complete medication profiles including indications, contraindications, dosing, health basket status, pricing, and generic alternatives. Features advanced drug name search with Hebrew/English fuzzy matching, symptom-based treatment discovery, therapeutic comparison templates, safety verification workflows, and health fund formulary alignment (Clalit, Maccabi, Meuhedet, Leumit).
MCP server providing access to Israeli Ministry of Health data dashboard APIs. Interfaces with MOH endpoints covering hospital quality of service, patient surveys, war casualties, child health checkups, child development metrics, beach water quality, and health fund (kupat cholim) information. Acts as a bridge between the official health.gov.il data dashboard and MCP-compatible AI clients.
MCP server providing programmatic access to Israeli Land Authority (ILA/Rami) public tender data. Offers comprehensive search and filtering of government land tenders by type, location, status, and dates, with full Hebrew Unicode support. Features active tender listings, detailed tender information, geographic mapping data, recent tender outcomes, and settlement code lookups. Also exposes static reference data resources for tender types, regions, land uses, statuses, and priority populations.
Python-based MCP server for querying Israeli government public real estate data via the Govmap API. Provides comprehensive property deal analysis including address autocomplete, geospatial block/parcel (gush/helka) lookup, recent transaction discovery by radius, street-level and neighborhood-level deal aggregation, market trend analysis with price insights, and multi-address comparison. Supports Hebrew addresses natively and returns deal prices, dates, and property details from official government records.
MCP server providing real-time public transit routing and arrival information for Israel. Combines Google Routes API for transit directions, Google Places API for city detection, GTFS data for accurate stop code matching, and curlbus integration for live bus/train arrival times from Israeli transit operators. Supports Hebrew-localized addresses and times, returns multi-step transit routes with operator names, route numbers, departure/arrival stops, and real-time arrival countdowns.
MCP server for accessing weather data from the Israeli Meteorological Service (IMS). Provides location information for all weather monitoring stations across Israel, weather forecast data by location, current weather alerts, real-time weather analysis, wind direction mappings, weather condition code descriptions, and comprehensive city portal information combining multiple data points. Supports both Hebrew and English responses via StreamableHttp transport.
MCP server enabling natural language search across millions of cultural, historical, and literary assets held by the National Library of Israel (NLI). Converts conversational queries in Hebrew or English into structured API calls against the NLI digital archive, returning results with thumbnails, IIIF manifests, and streaming content. The collection includes ancient manuscripts, government records, photographs, maps, music recordings, oral histories, and scholarly publications spanning Jewish heritage and Israeli culture.
Add an MCP server to your AI agent with a single configuration entry
Claude Code (claude_desktop_config.json).mcp.json
{
"mcpServers": {
"israel-statistics": {
"command": "npx",
"args": [
"@reuvenorg/israel-statistics-mcp"
]
}
}
}Cursor (.cursor/mcp.json).cursor/mcp.json
{
"mcpServers": {
"israel-statistics": {
"command": "npx",
"args": [
"@reuvenorg/israel-statistics-mcp"
]
}
}
}