metadata_raster
Retrieve metadata from raster datasets using a local file path or HTTPS URL. Ideal for GIS analysis and spatial data management within the GIS MCP Server.
Instructions
Open a raster dataset in read-only mode and return metadata.
This tool supports two modes based on the provided string:
1. A local filesystem path (e.g., "D:\Data\my_raster.tif").
2. An HTTPS URL (e.g., "https://example.com/my_raster.tif").
The input must be a single string that is either a valid file path
on the local machine or a valid HTTPS URL pointing to a raster.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path_or_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path_or_url": {
"title": "Path Or Url",
"type": "string"
}
},
"required": [
"path_or_url"
],
"title": "metadata_rasterArguments",
"type": "object"
}