Rasdaman MCP Server▌
by rasdaman
Rasdaman MCP Server: interact with rasdaman multidimensional array databases via natural language to list coverages, get
Enables natural language interaction with rasdaman multidimensional databases by translating tool calls into WCS/WCPS queries. It allows users to list coverages, retrieve metadata, and execute complex queries on datacubes through an LLM.
Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.
best for
- / Geospatial analysts working with satellite data
- / Researchers querying Earth observation archives
- / Data scientists analyzing multidimensional datasets
capabilities
- / List available datacubes and coverages
- / Retrieve metadata and dimensions of datasets
- / Execute complex spatial-temporal queries
- / Generate NDVI and other computed imagery
- / Query satellite data using natural language
- / Translate requests to WCS/WCPS automatically
what it does
Connects LLMs to rasdaman multidimensional databases, allowing natural language queries on datacubes and satellite imagery through automatic WCS/WCPS translation.
about
Rasdaman MCP Server is an official MCP server published by rasdaman that provides AI assistants with tools and capabilities via the Model Context Protocol. Rasdaman MCP Server: interact with rasdaman multidimensional array databases via natural language to list coverages, get It is categorized under databases, analytics data.
how to install
You can install Rasdaman MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
license
MIT
Rasdaman MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
readme
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 serverRASDAMAN_USERNAME: Username for authenticationRASDAMAN_PASSWORD: Password for authentication
or command-line arguments to the rasdaman-mcp tool:
--rasdaman-url: URL for the rasdaman server (defaultRASDAMAN_URLenv variable orhttp://localhost:8080/rasdaman/ows).--username: Username for authentication (defaultRASDAMAN_USERNAMEenv variable orrasguest).--password: Sets the password for authentication (defaultRASDAMAN_PASSWORDenv variable orrasguest).
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

Describing a Coverage

Executing a Query

Query Result Visualization

Natural Language Query Suggestion

Development
Setup
-
Clone the git repository:
git clone https://github.com/rasdaman/rasdaman-mcp.git cd rasdaman-mcp/ -
Create a virtual environment (if you don't have one):
uv venv -
Activate the virtual environment:
source .venv/bin/activate -
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 theRasdamanActionsclass and decorates its methods to expose them as tools. RasdamanActionsClass (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.
-
First, send an
initializerequest. This will return a200 OKresponse and, most importantly, a session ID in themcp-session-idresponse 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" -
Next, send a notification to the server to confirm the session is ready. Use the session ID from Step 1 in the
mcp-session-idheader. 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" -
Finally, you can call a tool using the
tools/callmethod. Theparamsobject must contain thenameof the tool and anargumentsobject 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"
FAQ
- What is the Rasdaman MCP Server MCP server?
- Rasdaman MCP Server is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for Rasdaman MCP Server?
- This profile displays 34 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.8 out of 5—verify behavior in your own environment before production use.
Use Cases▌
Direct Database Queries from AI
Enable Claude to query your database directly using natural language
Example
Ask 'Show me top 10 customers by revenue this month' and get SQL results instantly
Eliminate manual SQL writing for ad-hoc queries, get insights 10x faster
Data Analysis & Reporting
Generate complex reports and analytics without leaving conversation
Example
Analyze sales trends, cohort retention, user behavior patterns conversationally
Democratize data access—non-technical team members can query databases
Schema Exploration
Understand database structure, relationships, and data models
Example
'Explain the user_orders table schema and its relationships'
Onboard engineers faster, explore unfamiliar databases efficiently
Data Validation & Quality Checks
Run data quality queries to catch anomalies and inconsistencies
Example
Find duplicate records, missing values, orphaned foreign keys automatically
Maintain data integrity with less manual SQL work
Implementation Guide▌
Prerequisites
- ›Claude Desktop 0.7.0+ or Cursor with MCP support
- ›Database credentials (read-only recommended for safety)
- ›Network access from Claude client to database
- ›Understanding of database security and access control
Time Estimate
15-30 minutes including configuration and testing
Installation Steps
- 1.Install MCP server: npm install -g @modelcontextprotocol/server-[name]
- 2.Configure database connection in Claude Desktop config (~/.claude/mcp.json)
- 3.Provide connection string: host, port, database, username, password
- 4.Restart Claude Desktop to load MCP server
- 5.Test connection: 'List all tables in database'
- 6.Run simple query: 'Show me 5 rows from users table'
- 7.Verify results and permissions are correct
- 8.Document query patterns for team use
Troubleshooting
- ⚠Connection refused: Check database is running and network accessible
- ⚠Authentication failed: Verify credentials, check user permissions
- ⚠Claude can't see tables: Grant appropriate read permissions to database user
- ⚠Slow queries: Add indexes, limit result set size, use read replicas
- ⚠MCP server not loading: Check config syntax, restart Claude Desktop
Best Practices▌
✓ Do
- +Use read-only database credentials to prevent accidental writes
- +Connect to read replica, not production primary database
- +Set query timeout limits to prevent long-running queries
- +Document database schema and common queries for AI context
- +Monitor query performance and optimize slow queries
- +Use connection pooling for better performance
- +Test with non-production data first
✗ Don't
- −Don't use production write credentials—risk of data corruption
- −Don't query production database during peak traffic hours
- −Don't expose sensitive PII without proper access controls
- −Don't skip query result validation—AI can misinterpret schema
- −Don't allow unlimited result set sizes—set LIMIT clauses
- −Don't share database credentials in plain text config files
💡 Pro Tips
- ★Create database views for common queries to simplify AI access
- ★Add schema comments/descriptions so AI understands column meanings
- ★Use semantic table/column names ('customer_lifetime_value' not 'clv')
- ★Set up query logging to audit what Claude is querying
- ★Create saved query templates for recurring analysis
- ★Combine with data visualization tools for better insights
Technical Details▌
Architecture
MCP server acts as bridge between Claude and database, translating natural language to SQL queries and returning results in structured format.
Protocols
- Model Context Protocol (MCP)
- Database-specific protocols (PostgreSQL, MySQL, MongoDB)
Compatibility
- PostgreSQL
- MySQL
- SQLite
- MongoDB
- Redis
When to Use This▌
✓ Use When
Use for ad-hoc data queries, exploratory analysis, report generation, schema exploration, and democratizing data access. Best for read-heavy analytics workloads.
✗ Avoid When
Avoid for production write operations, mission-critical transactions, real-time OLTP workloads, or when database contains sensitive PII without proper access controls. Use read replicas, not primary.
Integration▌
- →Read replica connection for analytics queries
- →Database view layer to abstract complex joins
- →Query result caching for repeated questions
- →Audit logging of all AI-generated queries
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
List & Promote Your MCP Server
Share your MCP server with the developer community
Ratings
4.8★★★★★34 reviews- ★★★★★Ishan Liu· Dec 28, 2024
Rasdaman MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Layla Sethi· Dec 16, 2024
Rasdaman MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Nikhil Haddad· Dec 4, 2024
We evaluated Rasdaman MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
- ★★★★★Yuki Shah· Nov 23, 2024
Rasdaman MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Neel Khanna· Nov 19, 2024
According to our notes, Rasdaman MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
- ★★★★★Neel Dixit· Nov 7, 2024
We wired Rasdaman MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
- ★★★★★Rahul Santra· Nov 3, 2024
Strong directory entry: Rasdaman MCP Server surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Neel Kapoor· Oct 26, 2024
We evaluated Rasdaman MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
- ★★★★★Pratham Ware· Oct 22, 2024
Useful MCP listing: Rasdaman MCP Server is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Hiroshi Desai· Oct 14, 2024
Rasdaman MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 34