Skip to main content

MCP server enabling LLM-powered access to multi-dimensional geo-spatial datacubes in rasdaman.

Project description

Rasdaman MCP Server

This tool enables users to interact with rasdaman in a natural language context. By exposing rasdaman functionality as tools via the MCP protocol, an LLM can query the database to answer questions like:

  • "What datacubes are available?"
  • "What are the dimensions of the 'Sentinel2_10m' coverage?"
  • "Create an NDVI image for June 12, 2025."

The MCP server translates these tool calls into actual WCS/WCPS queries that rasdaman can understand and then returns the results to the LLM.

Installation

pip install rasdaman-mcp

Usage

First the connection from the MCP server to rasdaman needs to be configured, either through environment variables:

  • RASDAMAN_URL: URL for the rasdaman server
  • RASDAMAN_USERNAME: Username for authentication
  • RASDAMAN_PASSWORD: Password for authentication

or command-line arguments to the rasdaman-mcp tool:

  • --rasdaman-url: URL for the rasdaman server (default RASDAMAN_URL env variable or http://localhost:8080/rasdaman/ows).
  • --username: Username for authentication (default RASDAMAN_USERNAME env variable or rasguest).
  • --password: Sets the password for authentication (default RASDAMAN_PASSWORD env variable or rasguest).

Then the MCP is ready to be used with an AI agent tool, in one of two modes: stdio (default) or http.

stdio Mode

Used for direct integration with clients that take over managing the server process and communicate with it through standard input/output. Generally in your AI tool you need to specify the command to run rasdaman-mcp:

rasdaman-mcp --username rasguest --password rasguest --rasdaman-url "..."

Example for enabling it in gemini-cli:

gemini mcp add rasdaman-mcp "rasdaman-mcp --username rasguest --password rasguest"

Benefits:

  • Simplicity: No need to manage a separate server process or ports.
  • Seamless Integration: Tools are transparently made available to the LLM within the client environment.

http Mode

This mode starts a standalone Web server listening on a specified host/port, e.g:

rasdaman-mcp --transport http --host 127.0.0.1 --port 8000 --rasdaman-url "..."

The MCP server URL to be configured in your AI agent would be http://127.0.0.1:8000/mcp with transport streamable-http. For example, for Mistral Vibe extend the config.toml with a section like this:

[[mcp_servers]]
name = "rasdaman-mcp"
transport = "streamable-http"
url = "http://127.0.0.1:8000/mcp/"

Benefits:

  • Scalability: The MCP server can be containerized (e.g., with Docker) and deployed as a separate microservice.
  • Decoupling: Any client that can speak HTTP (e.g., curl, Python scripts, web apps, other LLM clients) can interact with the tools.
  • Testing: Allows for direct API testing and debugging, independent of an LLM client.

AI agents

Once an AI agent is configured with access to rasdaman-mcp, it becomes capable of using several tools:

  • list coverages in the configured rasdaman
  • get the details of a particular coverage
  • execute processing/analytics queries based on a description in natural language

Examples

The following examples demonstrate the interaction with an AI agent using the rasdaman MCP server.

Listing Coverages

List Coverages

Describing a Coverage

Describe Coverage

Executing a Query

Execute Query

Query Result Visualization

Query Result

Natural Language Query Suggestion

Suggest Query

Development

Setup

  1. Clone the git repository:

    git clone https://github.com/rasdaman/rasdaman-mcp.git
    cd rasdaman-mcp/
    
  2. Create a virtual environment (if you don't have one):

    uv venv
    
  3. Activate the virtual environment:

    source .venv/bin/activate
    
  4. Install from source:

    uv pip install -e .
    

Core Components

  • Main Application (main.py): This script initializes the FastMCP application. It handles command-line arguments for transport selection, rasdaman URL, username, and password. It then instantiates the RasdamanActions class and decorates its methods to expose them as tools.
  • RasdamanActions Class (rasdaman_actions.py): Encapsulates all interaction with the rasdaman WCS/WCPS endpoints. It is initialized with the server URL and credentials, and its methods contain the logic for listing coverages, describing them, and executing queries.
  • WCPS crash course (wcps_crash_course.py): A short summary of the syntax of WCPS, allowing LLMs to generate more accurate queries.

Defined Tools

The following methods are exposed as tools:

  • list_coverages(): Lists all available datacubes.
  • describe_coverage(coverage_id): Retrieves metadata for a specific datacube.
  • wcps_query_crash_course(): Returns a crash course on WCPS syntax with examples and best practices.
  • execute_wcps_query(wcps_query): Executes a raw WCPS query and returns a result either directly as a string (scalars or small json), or as a filepath.

Documentation

To build the documentation:

# install dependencies
uv pip install '.[docs]'

sphinx-build docs docs/_build

You can then open docs/_build/index.html in the browser.

Automated Tests

To run the tests:

# install dependencies
uv pip install '.[tests]'

pytest

Manual Testing

Interacting with the standalone HTTP server manually requires a specific 3-step process using curl. The fastmcp protocol is stateful and requires a session to be explicitly initialized.

  1. First, send an initialize request. This will return a 200 OK response and, most importantly, a session ID in the mcp-session-id response header (needed in the next steps).

    curl -i -X POST \
    -H "Accept: text/event-stream, application/json" \
    -H "Content-Type: application/json" \
    -d '{
          "jsonrpc": "2.0",
          "method": "initialize",
          "params": {
            "protocolVersion": "2024-11-05",
            "capabilities": {},
            "clientInfo": { "name": "curl-client", "version": "1.0.0" }
          },
          "id": 1
        }' \
    "http://127.0.0.1:8000/mcp"
    
  2. Next, send a notification to the server to confirm the session is ready. Use the session ID from Step 1 in the mcp-session-id header. This request will not produce a body in the response.

    SESSION_ID="<YOUR_SESSION_ID>"
    
    curl -X POST \
    -H "Accept: text/event-stream, application/json" \
    -H "Content-Type: application/json" \
    -H "Mcp-Session-Id: $SESSION_ID" \
    -d '{
          "jsonrpc": "2.0",
          "method": "notifications/initialized"
        }' \
    "http://127.0.0.1:8000/mcp"
    
  3. Finally, you can call a tool using the tools/call method. The params object must contain the name of the tool and an arguments object with the parameters for that tool. The server will respond with the result of the tool call in a JSON-RPC response.

    SESSION_ID="<YOUR_SESSION_ID>"
    
    # Example: Calling the 'list_coverages' tool
    curl -X POST \
    -H "Accept: text/event-stream, application/json" \
    -H "Content-Type: application/json" \
    -H "Mcp-Session-Id: $SESSION_ID" \
    -d '{
          "jsonrpc": "2.0",
          "method": "tools/call",
          "params": {
            "name": "list_coverages",
            "arguments": {}
          },
          "id": 2
        }' \
    "http://127.0.0.1:8000/mcp"
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rasdaman_mcp-0.2.0.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rasdaman_mcp-0.2.0-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file rasdaman_mcp-0.2.0.tar.gz.

File metadata

  • Download URL: rasdaman_mcp-0.2.0.tar.gz
  • Upload date:
  • Size: 13.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rasdaman_mcp-0.2.0.tar.gz
Algorithm Hash digest
SHA256 6c04f299b4cf6e34bbf60265877ef323ab573377f11f65ce66cee345dd1cd7cc
MD5 a3846f9febedceb43476d8c767352f16
BLAKE2b-256 8aff158ac65e2e45550c3cb5b5f72d4a438acfea6cc67c29f3759ca553c52010

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasdaman_mcp-0.2.0.tar.gz:

Publisher: release.yml on rasdaman/rasdaman-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasdaman_mcp-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: rasdaman_mcp-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rasdaman_mcp-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4ad1bf59642d5be44807c3fb2ebf091183cdac7a42bb19fb08f9b84e818a4211
MD5 38db3fdec337332524f4145958f8eb5c
BLAKE2b-256 dc49cd2634f66f6d491aad56f7e6d2a550e1dcb679c7ed139819a309038865e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasdaman_mcp-0.2.0-py3-none-any.whl:

Publisher: release.yml on rasdaman/rasdaman-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page