AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

Planet Mcp

mcp-planetlabs-planet-mcp · by planetlabs

Planet-mcp is a local MCP server powered by the Planet SDK. It allows an AI agent/chat to interact with the Planet API.

— No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add mcp-planetlabs-planet-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-planetlabs-planet-mcp)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 18d ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Planet Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Planet MCP

planet-mcp is a local MCP server powered by the Planet SDK. It allows an AI agent/chat to interact with the Planet API.

To get started with your preferred AI agent, find it in the Usage section below.

Beta warning

This is experimental software. This MCP service will invoke the Planet SDK/CLI on your behalf. It can create and modify orders, subscriptions, and more. Do not disable tool approvals and always carefully review tool prompts before approving them. Use at your own risk.

Tools may be added, removed or altered based on testing/feedback.

Reminder: MCP servers and tools will increase the number of tokens used during interactions with your LLM provider.

We would love to hear back from you after using this, if you have a feature request or find something isn't working please file a Github issue for us! Thanks

Usage

Prerequisites

  1. Python 3.11 or higher

To install the Planet MCP server, use pip or your preferred package manager:

pip install planet-mcp

This will also install the planet SDK.

Authentication

You must authenticate your Planet account before using the local MCP server. You can do this by running:

planet auth login

NOTE

if you have PLAPIKEY set globaly, you should run unset PL_API_KEY and then planet auth reset and planet auth login again.


Supported AI assistants

The following AI agents have been tested with the Planet local MCP. For other agents, refer to their documentation for adding a custom MCP server (the Planet local MCP uses stdio transport).

Claude Code

To connect with Claude Code, run the following command:

claude mcp add planet planet-mcp
Claude Desktop

To connect using Claude Desktop, add the following to your claude_desktop_config.json file (see MCP documentation for more details):

{
  "mcpServers": {
    "planet": {
      "type": "stdio",
      "command": "planet-mcp"
    }
  }
}
Gemini CLI

To connect using Gemini CLI, add the following to your ~/.gemini/settings.json file:

"mcpServers": {
  "planet": {
    "command": "planet-mcp",
    "description": "Planet MCP Server",
    "timeout": 30000,
    "trust": false
  }
}
GitHub Copilot

To connect using GitHub Copilot, configure the mcp.json file (see VSCode docs) with the following configuration:

{
  "servers": {
    "planet": {
      "type": "stdio",
      "command": "planet-mcp"
    }
  }
}

Customizing the tools

If you'd like, you can enable or disable specific tools in the MCP server. For example, if you're only working with the orders tooling: You can start the server with just the that enabled: --include-tags=orders

If you want to keep the defaults, but disable a certain tool, you can: --exclude-tags=destinations

In order to disable more than one tool you can provide a comma separated list like: --exclude-tags=destinations,mosaics

By default, we have disabled download tools and the subscriptions tools, as we have found those tools don't work very well with LLMs at the moment.

Example queries

  • Does Planet have any recent imagery over Puget Sound?
  • List my feature collections
  • Order me the latest high-res imagery over the Netherlands
  • Create a PlanetScope order with the first item in my Netherlands Feature Collection.

Troubleshooting

Unable to launch planet-mcp (ENOENT, No such file or directory, etc.):

This is likely due to the planet-mcp package being installed to a different Python environment than the one your AI agent is using. The easiest way to resolve this is to run which planet-mcp after installing the package, and then copy the full path to your AI agent's MCP configuration. For example, if which planet-mcp returns /home/user/.local/share/virtualenvs/test/bin/planet-mcp, your config file would look like:

{
  "servers": {
    "planet": {
      "command": "/home/user/.local/share/virtualenvs/test/bin/planet-mcp"
    }
  }
}

Local dev

Prerequisites

  • python (>= 3.11) + uv
  • npx + friends (node >= 20) (to run inspector, if desired)
With Makefile
  1. ``make dev-up``
  2. Optional, make inspector
Without Makefile
  1. Create and activate virtual environment using uv:

``bash uv venv ` `bash source .venv/bin/activate ``

  1. Install dependencies using uv:

``bash uv pip install -e '.' ``

  1. Run mcp server

``bash planet-mcp ``

Optional run the inspector with

uv run fastmcp dev src/planet_mcp/main.py

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.