Skip to main content
Glama
aviveldan

Datagov Israel MCP

by aviveldan

DataGov Israel MCP サーバー

イスラエル政府のオープンデータ (data.gov.il) を探索するための MCP サーバーです。MCP Apps によるインタラクティブな可視化機能が組み込まれています。

数千の公開データセットの検索、構造のプロファイリング、チャートの生成、地図上への地理データのプロットなどを、すべて AI アシスタントから実行できます。

Tests Python 3.10+ License: MIT


何ができるのか?

🏠 住宅市場の探索

公営住宅のデータセットをプロファイルし、ユニットサイズ、場所、空き状況を把握します:

Dataset Profile — Public Housing

政府の住宅抽選において、どの都市の需要が最も高いかを確認します:

Housing Lottery Subscribers by City

全国の住宅サイズの分布を理解します:

Distribution of Public Housing Unit Sizes

抽選ごとの住宅供給数の推移を追跡します:

Housing Units Available per Lottery

🗺️ 公共インフラの地図化

イスラエル全土の教育機関を可視化します:

Education Institutions Map

公共交通機関の駅をプロットします:

Public Transport Stations


Related MCP server: senado-br-mcp

クイックスタート

インストール

git clone https://github.com/aviveldan/datagov-mcp.git
cd datagov-mcp

# Create virtual environment and install (requires uv)
uv venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
uv pip install -e ".[dev]"

Claude Desktop での使用

fastmcp install claude-desktop server.py

Claude Desktop を再起動すると、DataGovIL ツールがすぐに利用可能になります。

MCP Inspector で試す

fastmcp dev inspector server.py

これにより Web UI が開き、ツールを閲覧したり、インタラクティブにテストしたり、Apps タブで MCP App の可視化をプレビューしたりできます。

fastmcp dev apps での使用

インタラクティブな可視化アプリをローカルでプレビューします:

fastmcp dev apps server.py

例:不動産機会の発見

イスラエルの住宅市場を探索する際の実際のワークフロー例です:

You: "Search for discounted housing lottery datasets"

→ package_search(q="דירה בהנחה")
  Found: "נתונים תקופתיים - תכנית דירה בהנחה" (Discounted Housing Program)
  Resource ID: 7c8255d0-49ef-49db-8904-4cf917586031

You: "Profile this dataset so I can understand what fields are available"

→ dataset_profile(resource_id="7c8255d0-49ef-49db-8904-4cf917586031")
  Shows: LamasName (city), Subscribers, Winners, PriceForMeter,
         LotteryHousingUnits, ProjectName, Neighborhood...

You: "Show me which cities have the most subscribers competing for units"

→ chart_generator(
    resource_id="7c8255d0-49ef-49db-8904-4cf917586031",
    chart_type="bar",
    x_field="LamasName",
    y_field="Subscribers",
    title="Housing Lottery Subscribers by City"
  )
  → Interactive bar chart rendered in MCP Apps UI

You: "Now show the public housing units — map them and show me sizes"

→ dataset_profile(resource_id="c3a68837-9b7a-4ee7-bd92-130678dc8ae3")
  Shows: CityLmsName, NumOfRooms (avg 2.4), Floor, TotalArea (21-110 m²)...

→ chart_generator(
    resource_id="c3a68837-9b7a-4ee7-bd92-130678dc8ae3",
    chart_type="histogram",
    x_field="TotalArea",
    title="Distribution of Housing Unit Sizes (m²)"
  )
  → Most units are 48-57 m², with a long tail up to 110 m²

洞察: アシュケロンやスデロットのような都市では、抽選ごとに 25,000〜35,000 人の応募者がおり、競争が激しいことがわかります。周辺部の小さな都市(ウム・アル=ファーム、ナザレなど)では応募者ははるかに少なくなります。場所を柔軟に選べるのであれば、当選確率は劇的に向上します。


利用可能なツール

コアデータツール

ツール

説明

status_show

CKAN バージョンとサイト情報を取得

license_list

利用可能なデータセットライセンスを一覧表示

package_list

すべてのデータセット ID を取得

package_search

フィルターと並べ替えを使用してデータセットを検索

package_show

特定のデータセットの詳細メタデータを取得

organization_list

すべての組織を一覧表示

organization_show

特定の組織の詳細を取得

resource_search

データセット内のリソースを検索

datastore_search

特定のリソース内のデータをクエリ

fetch_data

便利ツール — 名前でデータセットを検索し、データを取得

可視化ツール (MCP Apps) 📊

これらのツールは、MCP 対応クライアントで直接インタラクティブな UI をレンダリングします。

dataset_profile

データセットをプロファイルし、その構造と品質を把握します。

  • 検出されたフィールド: integer, number, string, coordinate

  • 統計: 最小値, 最大値, 平均値, null 数, ユニーク値

  • 出力: 検索/フィルター機能付きのインタラクティブな DataTable

dataset_profile(resource_id="c3a68837-9b7a-4ee7-bd92-130678dc8ae3", sample_size=200)

chart_generator

任意のデータセットからインタラクティブなチャートを生成します。

チャートタイプ

ユースケース

histogram

数値の分布(例:住宅サイズ)

bar

カテゴリの比較(例:都市ごとの応募者数)

line

時系列の傾向(例:抽選ごとの住宅数)

scatter

2 つの数値フィールド間の相関

chart_generator(
  resource_id="7c8255d0-49ef-49db-8904-4cf917586031",
  chart_type="bar",
  x_field="LamasName",
  y_field="Subscribers",
  title="Housing Lottery Subscribers by City",
  limit=50
)

map_generator

インタラクティブな Leaflet マップ上に地理データをプロットします。

map_generator(
  resource_id="e873e6a2-66c1-494f-a677-f5e77348edb0",
  lat_field="Lat",
  lon_field="Long",
  limit=500
)

便利なリソース ID

開始に役立つ興味深いデータセットをいくつか紹介します:

データセット

リソース ID

用途

✈️ フライト (טיסות)

e83f763b-b7d7-479e-b172-ae981ddc6de5

航空会社別の棒グラフ

🏠 公営住宅 (דיור ציבורי)

c3a68837-9b7a-4ee7-bd92-130678dc8ae3

ヒストグラム、プロファイリング

🎰 住宅抽選 (דירה בהנחה)

7c8255d0-49ef-49db-8904-4cf917586031

棒グラフ/折れ線グラフ

🚌 交通機関の駅 (תחנות)

e873e6a2-66c1-494f-a677-f5e77348edb0

地図(緯度/経度あり)

🏫 学校 (מוסדות חינוך)

5c5d6bb0-755d-470d-84b6-d7dd3135ba9c

地図(UTM_X/UTM_Y)


アーキテクチャ

MCP Apps

可視化ツールは FastMCPApp プロバイダーと prefab-ui コンポーネントを使用しています:

  • DataProfile アプリDataTable, Metric コンポーネント

  • Charts アプリBarChart, LineChart, ScatterChart, Histogram

  • Maps アプリ → Leaflet HTML を含む Embed

@app.ui() を介して登録されたツールは、自動的に適切な MCP Apps メタデータを取得し、互換性のあるクライアントでレンダリングされます。

非同期 HTTP レイヤー

すべての API 呼び出しは httpx.AsyncClient を使用し、以下を設定しています:

  • 30 秒のタイムアウト

  • 5xx エラーに対する自動リトライ

  • コネクションプーリング

データ安全性

  • CKAN からの数値は強制変換されます("25"25.0 を処理)

  • マップのポップアップコンテンツは XSS を防ぐために HTML エスケープされます

  • 折れ線グラフは正しくレンダリングされるよう X 軸でソートされます


開発

テストの実行

pytest tests/ -v          # 39 tests
pytest tests/ --cov=datagov_mcp  # With coverage

コードスタイル

ruff check .   # Lint
ruff format .  # Format

プロジェクト構造

datagov-mcp/
├── datagov_mcp/
│   ├── server.py          # Core CKAN tools + provider registration
│   ├── apps.py            # FastMCPApp definitions (DataProfile, Charts, Maps)
│   ├── visualization.py   # Visualization tools (@app.ui entry points)
│   ├── api.py             # CKAN API helper
│   └── client.py          # HTTP client
├── tests/                 # 39 tests with HTTP mocking
│   ├── test_api.py
│   ├── test_contracts.py
│   ├── test_tools.py
│   └── test_visualization.py
├── screenshots/           # Auto-generated demo screenshots
├── server.py              # Entrypoint
└── pyproject.toml

貢献

貢献を歓迎します!ガイドラインについては CONTRIBUTING.md を参照してください。

  1. リポジトリをフォークする

  2. フィーチャーブランチを作成する

  3. テストを含めて変更を加える

  4. プルリクエストを送信する


トラブルシューティング

MCP Inspector とのポート競合

pip install nano-dev-utils
python -c "from nano_dev_utils import release_ports; release_ports.PortsRelease().release_all()"

Windows + OneDrive

OneDrive で同期されたフォルダー内でのインストール実行は避けてください。uv#7906 を参照してください。

インポートエラー

uv pip install -e ".[dev]"

ライセンス

MIT — LICENSE を参照してください。

謝辞

Available Tools

10 tools
fetch_dataC

Fetch data from public API based on a dataset name query

ParametersJSON Schema
NameRequiredDescriptionDefault
dataset_nameYes
limitNo
offsetNo

TDQS

C2.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but only states it fetches from a 'public API', missing key behavioral details such as authentication requirements, rate limits, error handling, or whether it's read-only. It doesn't disclose if this is a safe operation or has side effects, leaving significant gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that gets straight to the point without unnecessary words. However, it's slightly under-specified given the tool's complexity, as it could benefit from a bit more detail to be fully informative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

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 low schema coverage, the description is incomplete. It doesn't cover parameter meanings, behavioral traits, or return values, making it inadequate for a tool with 3 parameters and public API interactions. More context is needed for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate but only mentions 'dataset name query', which loosely maps to 'dataset_name'. It doesn't explain the purpose of 'limit' and 'offset' parameters, their constraints, or how they affect the fetch operation, failing to add meaningful semantics beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the action ('fetch data') and target ('from public API'), but is vague about what 'data' means and doesn't distinguish from siblings like 'datastore_search' or 'package_search'. It mentions 'dataset name query' which provides some context but lacks specificity about the type of data or API.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like 'datastore_search' or 'package_search' is provided. The description implies usage for fetching data with a dataset name, but doesn't specify prerequisites, exclusions, or comparative contexts with sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

license_listB

Get the list of licenses available for datasets on the site.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

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 states it's a read operation ('Get'), implying non-destructive behavior, but lacks details on permissions, rate limits, or response format. This leaves gaps in understanding how the tool behaves in practice.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with no wasted words, making it easy to parse and understand quickly. It's appropriately sized for a simple tool with no parameters.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is minimally adequate. It states what the tool does but lacks behavioral details and usage context, making it incomplete for fully informed use without additional inference.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters with 100% schema description coverage, so no parameter documentation is needed. The description doesn't add param info, but that's acceptable here, earning a baseline score as it doesn't detract from the schema's completeness.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get') and the resource ('list of licenses available for datasets on the site'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'package_list' or 'organization_list', which might also list entities, so it misses full sibling distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

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 doesn't mention context, prerequisites, or exclusions, leaving the agent to infer usage based on the name alone, which is insufficient for optimal tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

organization_listB

Get names of all organizations.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

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. While 'Get' implies a read-only operation, it doesn't specify whether this returns all organizations at once (vs. paginated), what format the names are in, or if there are any access restrictions. For a tool with zero annotation coverage, 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that states exactly what the tool does without any wasted words. It's appropriately sized for a simple listing tool and front-loads the core functionality immediately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter listing tool with no output schema, the description is minimally adequate. It states what the tool returns but doesn't cover format, pagination, or access considerations. Given the simplicity (no parameters, no complex annotations), it meets basic requirements but lacks depth that would help an agent use it effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema description coverage, so the schema already fully documents the lack of inputs. The description adds no parameter information, which is appropriate here since there are no parameters to explain. A baseline of 4 is correct for zero-parameter tools where the schema handles everything.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

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 ('names of all organizations'), making the purpose immediately understandable. However, it doesn't differentiate this tool from potential siblings like 'organization_show' or 'datastore_search' that might also retrieve organization data, preventing a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

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 siblings like 'organization_show' (likely for specific organizations) and 'datastore_search' (potentially for filtered searches), there's no indication of when this broad listing tool is appropriate versus more targeted options.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

organization_showB

Get details of a specific organization.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes

TDQS

B3.1/5.0
Behavior2/5

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. It states this is a read operation ('Get details'), implying it's likely safe and non-destructive, but doesn't address potential authentication needs, rate limits, error conditions, or what 'details' entail (e.g., format, depth). For a tool with zero annotation coverage, this leaves significant gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with zero wasted words. It's front-loaded with the core action and resource, making it highly efficient and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

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 low schema coverage, the description is incomplete. It doesn't explain what 'details' include, potential return formats, error handling, or prerequisites. For a tool that retrieves organizational data, this lacks necessary context for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 1 parameter with 0% description coverage, so the description must compensate. It implies the 'id' parameter is used to specify which organization to retrieve details for, adding semantic meaning beyond the bare schema. However, it doesn't clarify the format or constraints of the 'id' (e.g., numeric, string pattern), leaving some ambiguity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

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 ('details of a specific organization'), making the purpose immediately understandable. However, it doesn't differentiate this tool from potential siblings like 'organization_list' or 'status_show' that might also retrieve organizational information, which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

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 siblings like 'organization_list' (likely listing multiple organizations) and 'status_show' (possibly showing status rather than details), there's no indication of when this specific retrieval is appropriate, leaving usage unclear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

package_listB

Get a list of all package IDs (datasets).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states it 'Get[s] a list', implying a read operation, but doesn't specify if it's paginated, rate-limited, requires permissions, or what the return format is. This leaves significant gaps for an agent to understand how to handle 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that directly states the tool's function without any wasted words. It's front-loaded with the key action and resource, making it highly efficient and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete for a tool that likely returns a list of IDs. It doesn't explain the return format (e.g., JSON array, pagination), any limitations (e.g., max results), or error handling. For a read operation with no structured support, more context is needed to ensure reliable use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately doesn't add parameter details, and the baseline for this scenario is 4, as it avoids redundancy and focuses on the tool's purpose without unnecessary elaboration.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

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 ('list of all package IDs (datasets)'), making the purpose immediately understandable. However, it doesn't explicitly differentiate this from sibling tools like 'package_search' or 'package_show', which would require more specific scope or usage context.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

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 'package_search' or 'package_show'. It lacks context about prerequisites, such as whether authentication is needed, or any exclusions or limitations in its usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

package_showC

Get metadata about one specific package (dataset).

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes

TDQS

C2.9/5.0
Behavior2/5

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 states this is a read operation ('Get metadata'), which implies it's non-destructive, but doesn't mention authentication needs, rate limits, error conditions, or what metadata is returned. For a tool with zero annotation coverage, 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the key information ('Get metadata about one specific package'). There is no wasted verbiage, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations, no output schema, and low schema description coverage, the description is incomplete. It doesn't cover what metadata is returned, error handling, or usage context relative to siblings. Given the complexity of interacting with packages/datasets, more detail would help an agent use this tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description implies a single parameter (the package ID) by mentioning 'one specific package', but doesn't explain what format the ID should be (e.g., string, numeric) or where to find it. With 0% schema description coverage, the schema only documents the parameter name and type, so the description adds minimal value beyond what's already in the structured data.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get metadata') and target resource ('one specific package (dataset)'), making the purpose immediately understandable. However, it doesn't differentiate this tool from sibling tools like 'package_list' or 'package_search', which likely retrieve multiple packages or search across packages rather than a single specific one.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

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 'package_list' (for listing multiple packages) or 'package_search' (for searching packages). It mentions 'one specific package' but doesn't clarify prerequisites (e.g., needing a package ID) or exclusions (e.g., not for bulk operations).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

status_showA

Get the CKAN version and a list of installed extensions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior2/5

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 states what is returned but doesn't mention performance characteristics, error conditions, authentication requirements, or whether this is a read-only operation (though implied by 'Get').

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's function without any fluff. It's front-loaded with the core action and resources, making it immediately understandable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter read operation with no output schema, the description adequately covers what the tool returns. However, without annotations or output schema, it lacks details about response format, error handling, or system dependencies that would be helpful for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema coverage, so the schema already fully documents the lack of inputs. The description appropriately doesn't add parameter information, maintaining focus on the tool's purpose without unnecessary detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Get') and the resources returned ('CKAN version and a list of installed extensions'). It distinguishes itself from siblings like 'package_list' or 'organization_list' by focusing on system metadata rather than data content.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

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. While the purpose is clear, there's no mention of use cases, prerequisites, or how it differs from other system-related tools (none listed in siblings).

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.

  1. 10 tool updates
    • First observeddatastore_search
    • First observedfetch_data
    • First observedlicense_list
    • First observedorganization_list
    • First observedorganization_show
    • First observedpackage_list
    • First observedpackage_search
    • First observedpackage_show
    • First observedresource_search
    • First observedstatus_show

TDQS

B3/5.0

Scored across 10 tools

Disambiguation4/5

Most tools have distinct purposes, such as searching datastores vs. fetching data from APIs, but 'datastore_search' and 'resource_search' could be confused as both involve searching within datasets. The descriptions help clarify, but some overlap exists.

Naming Consistency4/5

Tools follow a consistent snake_case pattern with clear verb_noun structures like 'package_search' and 'organization_show', but 'fetch_data' deviates slightly with a less specific verb. Overall, the naming is predictable and readable.

Tool Count5/5

With 10 tools, the server is well-scoped for interacting with a data catalog, covering operations like listing, searching, and showing details for datasets, organizations, and resources. Each tool earns its place without being overwhelming.

Completeness4/5

The toolset provides good coverage for browsing and querying a CKAN-based data catalog, including CRUD-like operations for packages and organizations. Minor gaps exist, such as no tools for creating or updating datasets, but agents can work around this for read-only access.

Maintenance

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers