Install mcp-open-data-hk from PyPI
Install exact version 0.2.3. The executable name has not been verified, so it is intentionally not guessed.
python -m pip install 'mcp-open-data-hk==0.2.3'Enables access to Hong Kong government's official open data portal (DATA.GOV.HK) through natural language queries. Supports searching datasets, browsing categories, and retrieving detailed information about Hong Kong's public data resources
Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.
Install exact version 0.2.3. The executable name has not been verified, so it is intentionally not guessed.
python -m pip install 'mcp-open-data-hk==0.2.3'| Canonical slug | hong-kong-open-data-mcp-server-6a301e0b | Deployment | Local Only |
|---|---|---|---|
| Canonical package | pypi:mcp-open-data-hk | Repository | mcp-open-data-hk/mcp-open-data-hk |
| First published | Aug 14, 2025 | Latest release | Aug 14, 2025 |
| Last security verification | — | Classification confidence | 90% |
| Publication | Published | Official distribution | Yes |
| Channel | Identifier | Current version | Versions | Source |
|---|---|---|---|---|
| pypi | mcp-open-data-hk | 0.2.3 | 1 | Repository |
| Package | Version | Published / observed | Inventory | Security scan |
|---|---|---|---|---|
| pypimcp-open-data-hk | 0.2.3Current | Aug 14, 2025 | 8 toolsSucceeded · 0 resources · 0 prompts | Failed |
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
| Provenance | artifact_hash_verified | Signature | — |
|---|---|---|---|
| MCP SDK | — | Artifact SHA-256 | 17b8e1e7ca9d5aa50fc6466b337bc9141d5bce3fbb3736181ef5bab45a45c47d |
| Scanner | mcp-proof-engine 0.1.0 | Scan completed | Aug 24, 2026 |
| Security rating | — | Methodology | — |
| Tool | Category | Annotations | Risk |
|---|---|---|---|
get_category_detailsGet detailed information about a specific category (group)Input schema{
"additionalProperties": false,
"properties": {
"category_id": {
"type": "string",
"description": "The ID or name of the category to retrieve"
},
"include_datasets": {
"default": false,
"type": "boolean",
"description": "Include a truncated list of the category's datasets"
},
"include_dataset_count": {
"default": true,
"type": "boolean",
"description": "Include the full package count"
},
"include_extras": {
"default": true,
"type": "boolean",
"description": "Include the category's extra fields"
},
"include_users": {
"default": true,
"type": "boolean",
"description": "Include the category's users"
},
"include_groups": {
"default": true,
"type": "boolean",
"description": "Include the category's sub groups"
},
"include_tags": {
"default": true,
"type": "boolean",
"description": "Include the category's tags"
},
"include_followers": {
"default": true,
"type": "boolean",
"description": "Include the category's number of followers"
},
"language": {
"default": "en",
"type": "string",
"description": "Language code (en, tc, sc)"
}
},
"required": [
"category_id"
],
"type": "object"
}Output schema{
"additionalProperties": true,
"type": "object"
} | — | — | |
get_dataset_detailsGet detailed information about a specific datasetInput schema{
"additionalProperties": false,
"properties": {
"dataset_id": {
"type": "string",
"description": "The ID or name of the dataset to retrieve"
},
"language": {
"default": "en",
"type": "string",
"description": "Language code (en, tc, sc)"
},
"include_tracking": {
"default": false,
"type": "boolean",
"description": "Add tracking information to dataset and resources"
}
},
"required": [
"dataset_id"
],
"type": "object"
}Output schema{
"additionalProperties": true,
"type": "object"
} | — | — | |
get_datasets_by_formatGet datasets that have resources in a specific file format.Input schema{
"additionalProperties": false,
"properties": {
"file_format": {
"type": "string",
"description": "The file format to filter by (e.g., \"CSV\", \"JSON\", \"GeoJSON\")"
},
"limit": {
"default": 10,
"type": "integer",
"description": "Maximum number of datasets to return"
},
"language": {
"default": "en",
"type": "string",
"description": "Language code (en, tc, sc)"
}
},
"required": [
"file_format"
],
"type": "object"
}Output schema{
"additionalProperties": true,
"type": "object"
} | — | — | |
get_supported_formatsGet a list of file formats supported by data.gov.hk
Returns:
A list of supported file formatsInput schema{
"additionalProperties": false,
"properties": {},
"type": "object"
}Output schema{
"properties": {
"result": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"result"
],
"type": "object",
"x-fastmcp-wrap-result": true
} | — | — | |
list_categoriesGet a list of data categories (groups)Input schema{
"additionalProperties": false,
"properties": {
"order_by": {
"default": "name",
"type": "string",
"description": "Field to sort by ('name' or 'packages') - deprecated, use sort instead"
},
"sort": {
"default": "title asc",
"type": "string",
"description": "Sorting of results ('name asc', 'package_count desc', etc.)"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Maximum number of categories to return"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Offset for pagination"
},
"all_fields": {
"default": false,
"type": "boolean",
"description": "Return full group dictionaries instead of just names"
},
"language": {
"default": "en",
"type": "string",
"description": "Language code (en, tc, sc)"
}
},
"type": "object"
} | — | — | |
list_datasetsGet a list of dataset IDs from data.gov.hkInput schema{
"additionalProperties": false,
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Maximum number of datasets to return (default: 1000)"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Offset of the first dataset to return"
},
"language": {
"default": "en",
"type": "string",
"description": "Language code (en, tc, sc)"
}
},
"type": "object"
}Output schema{
"properties": {
"result": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"result"
],
"type": "object",
"x-fastmcp-wrap-result": true
} | — | — | |
search_datasetsSearch for datasets by query term using the package_search API.
This function searches across dataset titles, descriptions, and other metadata
to find datasets matching the query term.Input schema{
"additionalProperties": false,
"properties": {
"query": {
"default": "*:*",
"type": "string",
"description": "The solr query string (e.g., \"transport\", \"weather\", \"*:*\" for all)"
},
"limit": {
"default": 10,
"type": "integer",
"description": "Maximum number of datasets to return (default: 10, max: 1000)"
},
"offset": {
"default": 0,
"type": "integer",
"description": "Offset for pagination"
},
"language": {
"default": "en",
"type": "string",
"description": "Language code (en, tc, sc)"
}
},
"type": "object"
}Output schema{
"additionalProperties": true,
"type": "object"
} | — | — | |
search_datasets_with_facetsSearch for datasets and return faceted results for better data exploration.Input schema{
"additionalProperties": false,
"properties": {
"query": {
"default": "*:*",
"type": "string",
"description": "The solr query string"
},
"language": {
"default": "en",
"type": "string",
"description": "Language code (en, tc, sc)"
}
},
"type": "object"
}Output schema{
"additionalProperties": true,
"type": "object"
} | — | — |
| Endpoint | Transport | Authentication | Health | Observed |
|---|---|---|---|---|
| No verified remote endpoint is linked. | ||||
Install the selected package version with: python -m pip install 'mcp-open-data-hk==0.2.3'
Hong Kong Open Data MCP Server exposed 8 tools during independent protocol observation, including get_category_details, get_dataset_details, get_datasets_by_format, get_supported_formats, list_categories, list_datasets, search_datasets, search_datasets_with_facets.
Our scanner tested version 0.2.3 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.
Curated product and capability guides containing this catalog record.