status_show
Check the CKAN version and installed extensions to monitor the Data.gov.il Israeli Government Data platform status.
Instructions
Get the CKAN version and a list of installed extensions.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:12-18 (handler)The handler function for the 'status_show' tool. It is decorated with @mcp.tool() for registration and fetches the CKAN status by making a POST request to the API endpoint.@mcp.tool() async def status_show(ctx: Context): """Get the CKAN version and a list of installed extensions.""" await ctx.info("Fetching CKAN status...") response = requests.post(f"{BASE_URL}/action/status_show") response.raise_for_status() return response.json()