Israel Statistics MCP
This server provides access to Israel Central Bureau of Statistics (CBS) price indices, inflation data, and housing statistics, enabling AI assistants to query, analyze, and calculate economic trends.
Search and discover indices: Find price-index topics by keyword (e.g., "food", "housing", "energy"), list all index categories (CPI, housing, producer prices, construction, agriculture, etc.), and drill into topics within a specific category.
Retrieve index codes and historical data: Get numeric codes for specific topics, then fetch time-series price data with optional date range filtering or pagination.
Calculate inflation/price adjustments: Use the official CBS inflation calculator to adjust a monetary amount (in shekels or historical Israeli currencies) between any two dates.
Access headline indices: Retrieve today's headline indices or view them over a month range (back to January 1997).
Explore the full index tree: Fetch all indices for the current month, optionally filtered by category.
Key notes:
All tools are read-only and free — no API key required
Supports both Hebrew (default) and English responses
Housing data updates every two months; recent values may be provisional
Covers CPI, housing, producer prices, construction costs, agriculture, transportation, and more
Provides programmatic access to the Israeli Central Bureau of Statistics (CBS) price indices and economic data, allowing retrieval and analysis of consumer price indices, housing market data, producer price indices, and other economic statistics for Israel.
Supports deployment and running via Docker containers, with published images available on Docker Hub.
Implements code quality checking with modern flat configuration and TypeScript rules.
Provides distribution as an NPM package for easy installation.
Uses pnpm for package management with specific development commands available.
Ensures consistent code formatting throughout the codebase.
Built with TypeScript providing type-safe validation for all inputs and outputs when interacting with the Israeli statistics data.
Uses Vitest for unit and integration testing of the MCP server functionality.
Provides parsing and transformation capabilities for XML responses from the CBS API.
Implements comprehensive schema validation for all inputs and outputs using Zod.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Israel Statistics MCPwhat's the current consumer price index for Israel?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Israel Statistics MCP
Ask your AI assistant about Israeli inflation, prices, and housing data — straight from the official Central Bureau of Statistics (CBS).
Once installed, Claude (or any MCP-enabled assistant) can look up price indices, chart historical trends, and run the official CBS inflation calculator for you. No API key needed — the CBS data is free and public.
Install
Claude Desktop
Add this to your claude_desktop_config.json (Settings → Developer → Edit Config), then restart Claude:
{
"mcpServers": {
"israel-statistics": {
"command": "npx",
"args": ["-y", "@reuvenorg/israel-statistics-mcp"]
}
}
}Claude Code
One command in your terminal:
claude mcp add israel-statistics -- npx -y @reuvenorg/israel-statistics-mcpAny other MCP client
Use the same npx command and args as above — that's all a client needs.
Prefer Docker?
{
"mcpServers": {
"israel-statistics": {
"command": "docker",
"args": [
"run",
"--init",
"--rm",
"-i",
"reuvenaor/israel-statistics-mcp:latest"
]
}
}
}Related MCP server: pxweb-mcp
What can I ask?
Just talk to your assistant naturally:
"How much is 1,000 ₪ from January 2015 worth today?"
"What's the latest Israeli inflation number?"
"Show me housing price trends from 2020 to 2024."
"Which price indices exist for food? Compare bread vs. fresh vegetables."
"Link my 2018 rent of 4,500 ₪ to today using the CPI."
Answers come in Hebrew by default (it's the CBS default) — just ask in English to get English.
What's inside
9 read-only tools your assistant uses behind the scenes:
Tool | What it does |
| Search all price-index topics by keyword |
| List the index categories (CPI, housing, …) |
| Topics inside one category |
| The concrete index codes for a topic |
| Historical values for one index |
| Official CBS inflation adjustment between two dates |
| Today's headline indices |
| Headline indices over a month range |
| The full current-month index tree |
Good to know
Housing data updates every two months, and the last three published values are provisional — the server warns automatically when recent housing numbers may still change.
History depth varies — the general CPI goes back decades; the headline month-range view starts at January 1997.
It's read-only and free — the server only reads public CBS data over HTTPS (
api.cbs.gov.il) and talks to nothing else. No account, no key, no tracking.
For developers
Architecture, testing, CBS API details, security notes, and the release process live in docs/DEVELOPMENT.md. Vulnerability reports: SECURITY.md.
Links
npm: @reuvenorg/israel-statistics-mcp · Docker: reuvenaor/israel-statistics-mcp · MCP Registry:
io.github.reuvenaor/israel-statistics-mcpData source: Israel Central Bureau of Statistics · Model Context Protocol
MIT License — see LICENSE.
Available Tools
9 toolsget_all_indicesC
Get all indices by different bases with optional chapter filtering from Israel Statistics API
| Name | Required | Description | Default |
|---|---|---|---|
| oldFormat | No | Set to true if you need Hebrew text and the legacy display format. Use false (default) for English text and modern formatting. | |
| chapter | No | Index category filter. Options: a=Consumer Price Index (groceries, retail) | aa=Housing Market Index | b=Producer Price Index Industrial | ba=Producer Price Index Exports | bb=Producer Price Index Services | c=Residential Building Input | ca=Commercial Building Input | d=Road Construction Input | e=Agriculture Input | f=Bus Input | fa=Public Minibus Input. Leave empty for all. | |
| lang | No | Language for response. Options: he=Hebrew (default) | en=English. Use 'en' for English responses. | |
| page | No | Page number for pagination. Start with 1 for first page. Use with pagesize to navigate large result sets. | |
| pagesize | No | Number of results per page (maximum 1000). Controls how many items to return. Use with page for pagination. | |
| explanation | No | Additional explanation or context for the request |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. While it mentions 'optional chapter filtering', it doesn't describe important behavioral aspects: whether this is a read-only operation, what format the results come in, whether there are rate limits, authentication requirements, or what happens with large result sets beyond the pagination parameters documented in the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that communicates the core purpose without unnecessary words. It's appropriately sized for what it does convey, though it could be more front-loaded with critical usage information given the lack of annotations and sibling tool context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 6 parameters, no annotations, and no output schema, the description is insufficient. It doesn't explain what 'indices' are in this context, what format the results will be in, or how this comprehensive tool relates to the many sibling tools. The agent would struggle to understand when and how to use this tool effectively without additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% description coverage, so all parameters are well-documented in the structured schema. The description adds minimal value beyond what's already in the schema - it mentions 'optional chapter filtering' which corresponds to the 'chapter' parameter, but doesn't provide additional semantic context beyond what the schema already explains thoroughly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get all indices') and resource ('from Israel Statistics API'), with additional context about 'different bases' and 'optional chapter filtering'. However, it doesn't explicitly differentiate this tool from its siblings like 'get_main_indices' or 'get_index_data', which appear related but have different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. With multiple sibling tools like 'get_main_indices', 'get_main_indices_by_period', and 'get_index_data', there's no indication of how this comprehensive 'get all indices' tool differs from those more specific tools or when an agent should choose one over another.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_catalog_chaptersC
Get list of index chapters from Israel Statistics API
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Language for response. Options: he=Hebrew (default) | en=English. Use 'en' for English responses. | |
| page | No | Page number for pagination. Start with 1 for first page. Use with pagesize to navigate large result sets. | |
| pagesize | No | Number of results per page (maximum 1000). Controls how many items to return. Use with page for pagination. | |
| explanation | No | Additional explanation or context for the request |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions 'Get list' but doesn't disclose behavioral traits such as whether this is a read-only operation, potential rate limits, authentication needs, or what the response format looks like. The description is minimal and lacks essential operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's appropriately sized and front-loaded, clearly stating the tool's purpose without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and multiple sibling tools, the description is incomplete. It doesn't explain return values, differentiate from alternatives, or provide behavioral context, making it inadequate for an agent to fully understand when and how to use this tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 4 parameters. The description adds no additional meaning about parameters beyond what's in the schema, meeting the baseline of 3 for high schema coverage without extra value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'list of index chapters from Israel Statistics API', which is specific and understandable. However, it doesn't differentiate from sibling tools like 'get_all_indices' or 'get_main_indices', leaving ambiguity about what makes this tool unique for chapters versus other index-related tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. With multiple sibling tools like 'get_all_indices', 'get_main_indices', and 'get_chapter_topics', there's no indication of context, prerequisites, or exclusions to help an agent choose appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_chapter_topicsC
Get topics for a specific chapter from Israel Statistics API
| Name | Required | Description | Default |
|---|---|---|---|
| chapterId | Yes | Index category filter. Options: a=Consumer Price Index (groceries, retail) | aa=Housing Market Index | b=Producer Price Index Industrial | ba=Producer Price Index Exports | bb=Producer Price Index Services | c=Residential Building Input | ca=Commercial Building Input | d=Road Construction Input | e=Agriculture Input | f=Bus Input | fa=Public Minibus Input. Leave empty for all. | |
| lang | No | Language for response. Options: he=Hebrew (default) | en=English. Use 'en' for English responses. | |
| page | No | Page number for pagination. Start with 1 for first page. Use with pagesize to navigate large result sets. | |
| pagesize | No | Number of results per page (maximum 1000). Controls how many items to return. Use with page for pagination. | |
| explanation | No | Additional explanation or context for the request |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure but only states the basic action. It doesn't mention whether this is a read-only operation, potential rate limits, authentication needs, error handling, or the format of returned topics (e.g., list, structured data). For a tool with 5 parameters and no output schema, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized for a straightforward data retrieval tool, though its brevity contributes to gaps in other dimensions like guidelines and transparency.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (5 parameters, no output schema, and no annotations), the description is incomplete. It doesn't explain what 'topics' are in this context, how results are structured, or handling of large datasets via pagination. Without annotations or output schema, the agent lacks critical context for effective use, especially compared to sibling tools in the same API domain.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds no parameter-specific information beyond what's already in the schema, which has 100% coverage with detailed descriptions for all parameters. Since the schema fully documents parameters like 'chapterId' with enum mappings and 'page' for pagination, the description meets the baseline but doesn't enhance understanding of parameter usage or interactions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get topics') and resource ('for a specific chapter from Israel Statistics API'), making the purpose understandable. However, it doesn't differentiate this tool from sibling tools like 'get_index_topics' or 'get_catalog_chapters', which likely retrieve similar statistical data, leaving some ambiguity about when to choose this specific tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_index_topics' or 'get_catalog_chapters'. It mentions the API source but doesn't specify use cases, prerequisites, or exclusions, leaving the agent to infer usage from the tool name and parameters alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_index_calculatorC
Calculate price linkage using Israel Statistics API index calculator
| Name | Required | Description | Default |
|---|---|---|---|
| indexCode | Yes | The numeric index code to use for price linkage calculation. Get this from getIndexData or getSubjectCodes first. | |
| value | Yes | The original amount in the currency you want to link/adjust for inflation. For example, 100 for 100 shekels. | |
| fromDate | Yes | Starting date for the linkage calculation in mm-dd-yyyy format (e.g., '01-01-2020'). This is when your original amount was valued. | |
| toDate | Yes | Target date for the linkage calculation in mm-dd-yyyy format (e.g., '01-01-2024'). This shows what the amount is worth at this later date. | |
| currency | No | Currency type. Options: new_sheqel=current Israeli Shekel (default, most common) | old_sheqel=pre-1980s Israeli Shekel | lira=historical Israeli Lira. | |
| lang | No | Language for response. Options: he=Hebrew (default) | en=English. Use 'en' for English responses. | |
| page | No | Page number for pagination. Start with 1 for first page. Use with pagesize to navigate large result sets. | |
| pagesize | No | Number of results per page (maximum 1000). Controls how many items to return. Use with page for pagination. | |
| explanation | No | Additional explanation or context for the request |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure but offers minimal information. It states it 'calculates price linkage' but doesn't describe what the calculation does (e.g., inflation adjustment), how it works, what the output looks like, error conditions, rate limits, or authentication needs. For a calculation tool with 9 parameters, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise at just one sentence: 'Calculate price linkage using Israel Statistics API index calculator.' It's front-loaded with the core purpose and wastes no words. Every element earns its place by establishing what the tool does and its data source context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (9 parameters, calculation functionality) and lack of both annotations and output schema, the description is insufficiently complete. It doesn't explain what 'price linkage' means, how the calculation works, what format the result takes, or provide any examples. For a calculation tool with this many inputs, users need more context about the operation and expected outputs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds no parameter-specific information beyond what's already in the input schema, which has 100% coverage with detailed descriptions for all 9 parameters. The baseline score of 3 reflects that the schema does all the heavy lifting - the description doesn't compensate but also doesn't detract from the comprehensive schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Calculate price linkage using Israel Statistics API index calculator.' It specifies the verb ('calculate') and resource ('price linkage'), but doesn't differentiate from sibling tools like 'get_index_data' or 'get_subject_codes' which might provide related data. The purpose is specific but lacks sibling distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions the Israel Statistics API context but doesn't explain when to choose this calculator over other sibling tools like 'get_index_data' for index information or 'get_all_indices' for listings. There's no mention of prerequisites, typical use cases, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_index_dataC
Get index data from Israel Statistics API
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | The index code (numeric string) you want price data for. Get this code first from getSubjectCodes or getIndexTopics. Example: '120010' for general CPI. | |
| startPeriod | No | Starting period in mm-yyyy format like '01-2020' for January 2020. Leave empty to get data from the beginning of the series. | |
| endPeriod | No | Ending period in mm-yyyy format like '12-2024' for December 2024. Leave empty to get data up to the most recent available. | |
| format | No | Response format. Options: json=JSON format (recommended, default) | xml=XML format. Use json unless you specifically need XML. | |
| last | No | Get only the N most recent data points instead of the full series. Useful for getting just the latest values, e.g., use 12 for the last year of monthly data. | |
| coef | No | Set to true to include linkage coefficients for inflation calculations. Only needed if you plan to do manual price adjustments. | |
| lang | No | Language for response. Options: he=Hebrew (default) | en=English. Use 'en' for English responses. | |
| page | No | Page number for pagination. Start with 1 for first page. Use with pagesize to navigate large result sets. | |
| pagesize | No | Number of results per page (maximum 1000). Controls how many items to return. Use with page for pagination. | |
| explanation | No | Additional explanation or context for the request |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral disclosure. The description only states what the tool does at a high level without mentioning authentication requirements, rate limits, error handling, response structure, or whether this is a read-only operation. For a tool with 10 parameters and no annotations, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the core purpose without unnecessary words. It's appropriately sized for a tool with comprehensive schema documentation, though it could benefit from additional context about when to use it versus sibling tools.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (10 parameters, no output schema, no annotations), the description is inadequate. It doesn't explain the return format, error conditions, authentication needs, or how this tool differs from similar sibling tools. The high parameter count and lack of output schema mean users need more guidance than what's provided.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents all 10 parameters with detailed descriptions, examples, and constraints. The description adds no additional parameter information beyond what's in the schema, meeting the baseline expectation when schema coverage is complete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and resource ('index data from Israel Statistics API'), providing specific purpose. However, it doesn't differentiate this tool from sibling tools like get_all_indices, get_main_indices, or get_main_indices_by_period, which likely retrieve similar data with different scopes or filters.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. With multiple sibling tools that likely retrieve index data (e.g., get_all_indices, get_main_indices, get_main_indices_by_period), there's no indication of how this tool differs in scope, filtering, or use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_index_topicsC
Get index topics from Israel Statistics API
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Filter indices by update frequency. Options: M=monthly data only | Q=quarterly data only | MQ=both monthly and quarterly (most comprehensive) | QM=quarterly and monthly. Default shows all. | |
| searchText | No | Search for specific topics by name. For example, use 'housing' to find housing-related indices, or 'food' for food price indices. | |
| searchType | No | Search matching method. Options: contains=finds text anywhere in name (recommended) | begins_with=name starts with your text | equals=exact name match. Default: contains. | |
| lang | No | Language for response. Options: he=Hebrew (default) | en=English. Use 'en' for English responses. | |
| page | No | Page number for pagination. Start with 1 for first page. Use with pagesize to navigate large result sets. | |
| pagesize | No | Number of results per page (maximum 1000). Controls how many items to return. Use with page for pagination. | |
| explanation | No | Additional explanation or context for the request |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure but offers minimal information. It doesn't describe what 'index topics' are, the response format, pagination behavior, error conditions, or rate limits. The description only states what the tool does at a high level without operational details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the core purpose without unnecessary words. It's appropriately sized for a tool with well-documented parameters in the schema and gets straight to the point with zero wasted content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 7-parameter tool with no annotations and no output schema, the description is insufficient. It doesn't explain what 'index topics' are, how results are structured, or provide context about the Israel Statistics API domain. The agent would need to rely heavily on the parameter schema alone to understand this tool's functionality.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, providing comprehensive parameter documentation. The description adds no parameter-specific information beyond what's already in the schema, so it meets the baseline expectation without adding extra value. The description doesn't compensate for any gaps because there are none in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and resource ('index topics from Israel Statistics API'), making the purpose immediately understandable. It doesn't explicitly differentiate from sibling tools like 'get_all_indices' or 'get_chapter_topics', but the specific focus on 'topics' provides some implicit distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_all_indices' or 'get_chapter_topics'. It doesn't mention prerequisites, appropriate contexts, or exclusions, leaving the agent to infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_main_indicesC
Get main indices by different bases from Israel Statistics API
| Name | Required | Description | Default |
|---|---|---|---|
| oldFormat | No | Set to true if you need Hebrew text and the legacy display format. Use false (default) for English text and modern formatting. | |
| lang | No | Language for response. Options: he=Hebrew (default) | en=English. Use 'en' for English responses. | |
| page | No | Page number for pagination. Start with 1 for first page. Use with pagesize to navigate large result sets. | |
| pagesize | No | Number of results per page (maximum 1000). Controls how many items to return. Use with page for pagination. | |
| explanation | No | Additional explanation or context for the request |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions retrieving data but doesn't disclose behavioral traits such as whether this is a read-only operation, potential rate limits, authentication needs, or what the response format looks like. For a tool with no annotations, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the core purpose without unnecessary words. It's appropriately sized and front-loaded, though it could be slightly more informative to earn a higher score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and 5 parameters, the description is incomplete. It doesn't explain what 'main indices' or 'different bases' are, how results are structured, or any behavioral context. For a data retrieval tool with multiple parameters, this leaves significant gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 5 parameters thoroughly. The description adds no additional meaning beyond what's in the schema, such as explaining 'different bases' in relation to parameters. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool 'Get main indices by different bases from Israel Statistics API' which provides a clear verb ('Get') and resource ('main indices'), but it's vague about what 'different bases' means and doesn't distinguish from siblings like 'get_all_indices' or 'get_main_indices_by_period'. The purpose is understandable but lacks specificity for sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like 'get_all_indices' or 'get_main_indices_by_period'. The description mentions 'by different bases' but doesn't explain what this entails or how it differs from other tools, leaving the agent without clear usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_main_indices_by_periodC
Get main indices filtered by period from Israel Statistics API
| Name | Required | Description | Default |
|---|---|---|---|
| startDate | Yes | Starting period in yyyymm format, e.g., '202001' for January 2020. Cannot be earlier than 199701 (January 1997). | |
| endDate | Yes | Ending period in yyyymm format, e.g., '202412' for December 2024. Must be later than startDate. | |
| lang | No | Language for response. Options: he=Hebrew (default) | en=English. Use 'en' for English responses. | |
| page | No | Page number for pagination. Start with 1 for first page. Use with pagesize to navigate large result sets. | |
| pagesize | No | Number of results per page (maximum 1000). Controls how many items to return. Use with page for pagination. | |
| explanation | No | Additional explanation or context for the request |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions filtering by period but doesn't disclose important behavioral traits: what 'main indices' specifically refers to, whether this is a read-only operation, what the response format looks like, potential rate limits, authentication requirements, or error conditions. The description is minimal and lacks behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the core purpose without unnecessary words. It's appropriately sized for what it communicates and is front-loaded with the essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 6 parameters, no annotations, and no output schema, the description is insufficiently complete. It doesn't explain what 'main indices' are, what data format to expect, how results are structured, or provide context about the Israel Statistics API. The agent would need to guess about the response format and the nature of the data being retrieved.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters are well-documented in the schema itself. The description adds no additional parameter semantics beyond what's already in the schema descriptions. It mentions 'filtered by period' which aligns with startDate/endDate parameters, but provides no extra context about parameter usage or relationships.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and resource ('main indices'), and specifies filtering by period from a specific API. It distinguishes from sibling 'get_main_indices' by adding the period filtering aspect. However, it doesn't explicitly differentiate from other siblings like 'get_all_indices' or 'get_index_data' which might also involve indices.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. With multiple sibling tools related to indices (get_all_indices, get_main_indices, get_index_data, etc.), there's no indication of when period-filtered main indices are appropriate versus other index-related operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_subject_codesB
Get index codes for a specific subject/topic from Israel Statistics API
| Name | Required | Description | Default |
|---|---|---|---|
| subjectId | Yes | The numeric ID of the topic you want index codes for. Get this ID first by calling getChapterTopics or getIndexTopics. | |
| searchText | No | Filter index codes by description. For example, search 'bread' to find bread-related price indices within the topic. | |
| searchType | No | Search matching method. Options: contains=finds text anywhere in name (recommended) | begins_with=name starts with your text | equals=exact name match. Default: contains. | |
| lang | No | Language for response. Options: he=Hebrew (default) | en=English. Use 'en' for English responses. | |
| page | No | Page number for pagination. Start with 1 for first page. Use with pagesize to navigate large result sets. | |
| pagesize | No | Number of results per page (maximum 1000). Controls how many items to return. Use with page for pagination. | |
| explanation | No | Additional explanation or context for the request |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the API source but fails to describe key behaviors such as pagination handling, rate limits, authentication needs, error responses, or what the output format looks like. This leaves significant gaps for an agent to understand how to interact with the tool effectively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded with the core action and resource, making it easy for an agent to quickly grasp the intent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of 7 parameters, no annotations, and no output schema, the description is incomplete. It lacks details on behavioral aspects like pagination, error handling, and response structure, which are crucial for proper tool invocation. The high schema coverage helps with parameters, but overall context for usage remains insufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, providing detailed documentation for all 7 parameters. The description adds minimal value beyond this, as it doesn't elaborate on parameter interactions or provide additional context not already in the schema. This meets the baseline score of 3 for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Get') and resource ('index codes for a specific subject/topic'), specifying the source ('from Israel Statistics API'). It distinguishes this tool from siblings like 'get_all_indices' or 'get_main_indices' by focusing on subject-specific codes, though it doesn't explicitly contrast them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you need index codes for a particular subject, and the input schema hints at prerequisites (e.g., 'Get this ID first by calling getChapterTopics or getIndexTopics'). However, it lacks explicit guidance on when to use this tool versus alternatives like 'get_all_indices' or 'get_index_data', leaving usage context somewhat inferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
9 tool updates
- First observed
get_all_indices - First observed
get_catalog_chapters - First observed
get_chapter_topics - First observed
get_index_calculator - First observed
get_index_data - First observed
get_index_topics - First observed
get_main_indices - First observed
get_main_indices_by_period - First observed
get_subject_codes
TDQS
Most tools have distinct purposes, such as get_catalog_chapters for chapters and get_index_data for index data, but there is some overlap between get_all_indices and get_main_indices that could cause confusion. The descriptions help clarify, but an agent might need to infer the difference between 'all indices' and 'main indices'.
All tool names follow a consistent verb_noun pattern with 'get_' prefix, such as get_all_indices and get_index_data. There are no deviations in naming style, making the set predictable and easy to parse.
With 9 tools, the count is well-scoped for a statistics API server, covering various aspects like indices, chapters, topics, and calculations. Each tool appears to serve a specific function without redundancy, fitting the domain appropriately.
The tool set provides comprehensive coverage for querying and calculating statistics, including data retrieval, catalog browsing, and calculations. A minor gap might be the lack of update or delete operations, but this is reasonable for a read-only statistics API, and agents can work around this limitation.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Bank of Israel public API MCP. Keyless.
Israel Central Bureau of Statistics (CBS / הלשכה המרכזית לסטטיסטיקה) MCP.
data.gov.il MCP — Israel national open-data portal (CKAN API).
Israel Government Procurement MCP — public tenders & exemption contracts (keyless).
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for querying Israeli government real estate data, enabling property deal searches, market trend analysis, and address retrieval.4MIT
- AlicenseAqualityDmaintenanceMCP server for accessing statistical data via the PxWeb API v2.6231MIT
- AlicenseNot gradedqualityCmaintenanceBanco Central do Brasil MCP server that enables querying Brazilian central bank economic indicators via SGS codes.16MIT
- AlicenseNot gradedqualityCmaintenanceEnables access to Israel Central Bureau of Statistics (CBS) data through natural language queries via the Pipeworx MCP gateway.8MIT
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/reuvenaor/israel-statistics-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server