bhoonidhi-mcp
Provides tools for searching, saving, downloading, and carting satellite scenes from ISRO's Bhoonidhi portal, including natural-language scene search, location resolution, download previews, saved queries, and cart management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bhoonidhi-mcpfind Sentinel-2 scenes over Loktak Lake last December"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bhoonidhi-mcp
An MCP server that lets an AI agent search, save, download, and cart satellite scenes from ISRO's Bhoonidhi Browse & Order portal (NRSC) in natural language. An agent can turn a sentence like "Sentinel-2 over Shillong last January" into a real search against the live portal, see honestly what is available to download, save a search to reuse later, preview what a download would fetch, and — once logged in — download open-access scenes or stage them to the cart.
It is a thin adapter over the
bhoonidhi-downloader
SDK — the same client the bhd CLI uses — so no portal logic is duplicated.
Status
Search and save with no login; download and cart with one. The tools reach
the full archive of 41 satellite missions and 79 sensors, search the live
portal, and save searches to reusable slugs — all without credentials.
Downloading open-access scenes and staging scenes to the Bhoonidhi cart need a
login, done out of band with bhd auth login (the server reuses that session).
Tools
Tool | What it does | Login |
| The vocabulary of satellites, sensors, and search tokens the portal supports, live from Bhoonidhi. | no |
| Turns a place name ("Loktak Lake") into a centroid and bounding box. Rejects inputs that are not place names. | no |
| Natural-language scene search over an area and date range. Resolves a casual satellite name to exact tokens, and reports each scene's availability (Ready / Archived / OnOrder / Priced). Stateless — nothing is saved. | no |
| A dry run: shows what downloading the results would fetch, and what would be skipped, before anything is downloaded. | no |
| Persists a search (same arguments as | no |
| Lists saved queries as compact summaries: slug, name, date range, satellites, area, and availability. | no |
| Returns one saved query by slug, with its scenes. | no |
| Deletes a saved query by slug. | no |
| Reports whether a login is configured. Never handles a password or token. | no |
| Downloads a saved query's open-access scenes in the background, to a fixed server-configured root. Returns a | yes |
| One-off check of a background download by | no |
| Blocks until a download finishes (or a capped timeout), then reports — the efficient primitive a background watcher loops on. | no |
| Stages a saved query's scenes to the cart (routes each to ready / on-order / priced). | yes |
| Lists scenes currently staged in the cart. | yes |
| Removes scenes from the cart. | yes |
Availability matters: an OpenData scene is not necessarily staged for
download. search_scenes and preview_download distinguish Ready (fetch it
now) from Archived (open data, but may need a request on the portal first),
so an agent does not over-promise.
Downloads run in the background, independent of the conversation:
download_query returns a job_id at once and the transfer proceeds on its own.
Check progress once with download_status — it reports bytes downloaded, a
transfer rate, and a percent once the size is known — or follow a job to
completion with download_wait, which blocks until it finishes (or a capped
timeout) so an agent can delegate a background watcher and keep the conversation
free instead of sleep-looping. A job lives only as long as the server process,
so once a download proves large the status recommends running a standalone bhd query download <slug> command you own instead.
Install
The server is a Python package with a console entry point, bhoonidhi-mcp.
Install it from source with uv:
git clone https://github.com/geovicco-dev/bhoonidhi-mcp
cd bhoonidhi-mcp
uv syncThis exposes the bhoonidhi-mcp command at .venv/bin/bhoonidhi-mcp. The server
speaks stdio and is launched by an MCP client — you point the client at that
command.
Connecting a client
Every MCP client needs the same thing: the command to launch. Use the absolute path to the entry point (most reliable across GUI and CLI clients):
/path/to/bhoonidhi-mcp/.venv/bin/bhoonidhi-mcpClaude Desktop / Claude Code
claude_desktop_config.json (or claude mcp add):
{
"mcpServers": {
"bhoonidhi": {
"command": "/path/to/bhoonidhi-mcp/.venv/bin/bhoonidhi-mcp",
"args": []
}
}
}OpenCode
~/.config/opencode/opencode.json:
{
"mcp": {
"bhoonidhi": {
"type": "local",
"command": ["/path/to/bhoonidhi-mcp/.venv/bin/bhoonidhi-mcp"],
"enabled": true
}
}
}MCP Inspector (to try it without an agent)
npx @modelcontextprotocol/inspector /path/to/bhoonidhi-mcp/.venv/bin/bhoonidhi-mcpExample
Ask an agent, in plain language:
"What Sentinel-2 scenes are over Shillong in January 2024, and how many can I actually download?"
The agent calls resolve_location for Shillong, then search_scenes, and
answers from the result — for example, that all scenes are Archived (open
data, but each may need a request on the portal before it will download), rather
than claiming they are all ready.
Prompts to try
Copy these into any connected agent to get a feel for what it can do.
Discover the archive
"What satellites and sensors does Bhoonidhi have?"
"Which sensors does ResourceSat-2A carry, and at what resolution?"
"Does Bhoonidhi have any radar satellites?"
Search for scenes
"Find Sentinel-2 scenes over Shillong in January 2024."
"Show me Cartosat imagery within 20 km of Bengaluru in the first half of 2024."
"Any Sentinel-1 scenes over the Sundarbans in March 2024?"
"What Landsat-8 imagery covers Kaziranga National Park last winter?"
"Find MODIS scenes over the Rann of Kutch in December 2023."
Check what's available to download
"Of those Sentinel-2 scenes, how many can I actually download right now?"
"Which of these need to be ordered or paid for?"
Preview a download
"Preview what downloading those scenes would fetch."
Save a search to reuse
"Save that Sentinel-2 search so I can download it later."
"List my saved searches."
"Show me what's in the search I saved as ."
"Delete the saved search ."
Download and cart (need a login — see below)
"Am I logged in to Bhoonidhi?"
"Download the open-data scenes from my saved search ."
"How's that download going?"
"Download and let me know when it's done — I'll keep working."
"Add the priced scenes from to my cart."
"What's in my cart this week?"
Login (for downloads and cart)
Search, saved queries, and previews need no credentials. Downloading scenes and
staging them to the cart do. Log in once, out of band — the server reuses the
same session the bhd CLI writes:
bhd auth loginThe MCP server never takes a username or password as a tool argument, and
auth_status never returns your token. For a headless setup with no interactive
login, you can instead set BHOONIDHI_USERNAME / BHOONIDHI_PASSWORD in the
server's environment; the server reads them only to establish a session.
Configuration
Set as environment variables (all optional):
Variable | Default | Purpose |
|
| User-Agent sent to Nominatim (its usage policy asks for a descriptive one). |
|
| Score (0–100) a satellite-name match must clear to be confident; below it, candidates are returned for the agent to confirm. |
|
| Maximum scenes returned inline by |
|
| Allow-listed root every download writes under, as |
|
| Parallel download workers. |
|
| Once a download's live byte total (or known size) passes this, the status flags it large and steers the agent to hand off or run a standalone command. |
| (unset) | Optional headless login. Prefer |
Development
uv sync
uv run pytest # test suite
uv run ruff check . # lintLicense
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for Mireye Earth — federal-source-cited geospatial data for any MCP-aware agent.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for Japan geodata: cadastral lot numbers (chiban) and reverse geocoding, for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/geovicco-dev/bhoonidhi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server