status_show
Retrieve the CKAN version and list of installed extensions for the Datagov Israel MCP server to monitor system configurations.
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' MCP tool. It is registered via the @mcp.tool() decorator and fetches the CKAN status and extensions list from the Data.gov.il 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()