Overview
Terrafloww provides a Model Context Protocol (MCP) server that enables AI agents to interact with the Marketplace. Your agent can search datasets, retrieve code examples, and understand data schemas.Connection Details
Connect your AI agent to the Terrafloww MCP server:| Endpoint | URL |
|---|---|
| SSE Endpoint | https://api.terrafloww.com/api/mcp/sse |
| Message Endpoint | https://api.terrafloww.com/api/mcp/message |
Authentication
The MCP server requires authentication via:- API Token - Include in the
Authorizationheader - Session Cookie - For browser-based integrations
Available Tools
search_datasets
Search for datasets within the Terrafloww catalog.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
query | string | No | Search query. Use * to list all datasets |
limit | number | No | Max results (default: 10, max: 50) |
get_dataset_code_example
Get a Python code snippet to access a dataset using the Rasteret library.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
dataset_slug | string | Yes | Dataset slug |
org_slug | string | No | Organization slug (optional if authenticated) |
get_dataset_yaml_schema
Get the JSON schema for dataset YAML definitions.
Arguments: None
Example:
IDE Integration
VS Code with Continue
Add to your~/.continue/config.json:
Claude Desktop
Add to your Claude Desktop configuration:Use Cases
Dataset Discovery
Let your AI agent search and explore available geospatial datasets.
Code Generation
Get ready-to-use Python snippets for accessing specific datasets.
Schema Understanding
Help your agent understand how to create and configure datasets.
Workflow Automation
Build automated pipelines that interact with the Marketplace.