MCP server for Mireye Earth — published source of the mireye-mcp PyPI package (snapshot-synced from a private monorepo)
claude mcp add mireye-earth-mcp -- uvx mireye-mcp{
"mcpServers": {
"mireye-earth-mcp": {
"command": "uvx",
"args": ["mireye-mcp"]
}
}
}MCP Servers overview
<!-- mcp-name: com.mireye/earth -->
# mireye-mcp
> Developed in a private monorepo. This repository
> ([Mireye-Labs/mireye-earth-mcp](https://github.com/Mireye-Labs/mireye-earth-mcp))
> is the published source of the `mireye-mcp` PyPI package, snapshot-synced
> on every release. Issues and PRs are welcome here (changes are applied upstream
> and re-synced; the test suite runs in the monorepo); releases land via PyPI.
Expose Mireye Earth's `/v1/ask` and `/v1/fetch` endpoints to MCP clients
that need a local stdio adapter (Claude Desktop, Cursor, custom agents
built on the `mcp` Python SDK) as native tools — no HTTP wiring required.
This is a standalone PyPI package (`mireye-mcp`) with only two
runtime dependencies — `httpx` and `mcp`. It does not pull in the
geospatial backend, so there's no GDAL / rasterio / DuckDB build step.
The server is a local stdio adapter with no geospatial business logic:
tool handlers POST to the deployed Mireye HTTP API, while read-only MCP
resources fetch and cache the public field catalog.
Mireye also exposes a hosted remote MCP endpoint at
`https://api.mireye.com/mcp` for clients that support Streamable
HTTP and native OAuth. Use that hosted endpoint for Claude Code so `/mcp`
opens the browser sign-in flow. This package remains the local stdio path;
it uses `mireye-mcp login` or `MIREYE_BEARER_TOKEN` for credentials.
---
## What the agent gets
Two tools, both prefixed `mireye_` so they sort together and don't
collide with generic `ask` / `fetch` tools from other MCP servers:
| Tool | When the agent should call it |
|-----------------|------------------------------------------------------------------------------------------------|
| `mireye_ask` | The caller asked a question about a US place ("is this in a flood zone?", "wildfire risk?"). |
| `mireye_fetch` | The caller wants specific named fields ("elevation and slope here") or is powering a workflow. |
Catalog context is exposed as MCP resources instead of extra tools:
| Resource | What it returns |
|----------|-----------------|
| `mireye://catalog/fields` | Full field catalog. |
| `mireye://catalog/presets` | Preset names and field expansions. |
| `mireye://catalog/us-envelope` | Supported coordinate bounds. |
| `mireye://field/{name}` | One field definition. |
| `mireye://preset/{name}` | One preset expansion. |
Workflow prompts are also registered: `mireye_ask`, `mireye_fetch`,
`mireye_site_report`, `mireye_flood_check`, `mireye_wildfire_underwrite`,
and `mireye_pick_fields`. Claude Code surfaces MCP prompts as slash
commands under the form `/mcp__<server>__<prompt>`.
There is no third `list_fields` tool. Agents that need the catalog should
read the MCP resources above; the stdio adapter backs them with
`GET /v1/meta/fields` and a 1-hour ETag-aware cache.
---
## Install local stdio — one command with `uvx`
```bash
uvx mireye-mcp
```
That's it. `uvx` (bundled with [`uv`](https://docs.astral.sh/uv/))
downloads the package into a managed cache, runs the entry point, and
the next invocation is instant. No venv to manage, no `pip install`,
no native builds.
If you don't have `uv`:
```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```
Plain pip also works:
```bash
pip install mireye-mcp
mireye-mcp # entry point
```
---
## Official MCP Registry
This server publishes to the
[Official MCP Registry](https://registry.modelcontextprotocol.io) as
**`com.mireye/earth`** (the entry goes live with the next tagged
release; the publish job ships from `release.yml`). The registry entry
carries both distributions:
- the **PyPI package** `mireye-mcp` (local stdio, run via `uvx`), and
- the **hosted remote** `https://api.mireye.com/mcp` (Streamable HTTP +
OAuth) for clients that prefer a remote server.
Once the entry is live, registry-aware clients (VS Code, the GitHub MCP
Registry, and anything else that reads the official registry) can
discover and install it from there — no manual config required.
---
## Wire it into Claude Desktop
First authenticate the local adapter:
```bash
mireye-mcp login
```
For non-interactive hosts, set `MIREYE_BEARER_TOKEN` instead.
Edit `~/Library/Application Support/Claude/claude_desktop_config.json`
(macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):
```json
{
"mcpServers": {
"mireye-earth": {
"command": "uvx",
"args": ["mireye-mcp"]
}
}
}
```
Restart Claude Desktop. The two tools (`mireye_ask`, `mireye_fetch`)
appear under the 🔌 menu, with catalog resources and prompts available to
clients that surface those MCP primitives.
To point at a self-hosted deployment instead of the default Fly URL:
```json
{
"mcpServers": {
"mireye-earth": {
"command": "uvx",
"args": ["mireye-mcp"],
"env": {
"MIREYE_BASE_URL": "https://your-deploy.example.com"
}
}
}
}
```
---
## Wire it into Claude Code
Use the hosted HTTP MCP endpoint instead of this local stdio package:
```bash
claude mcp remove mireye-earth -s user # only needed if an old stdio entry exists
claude mcp add --transport http --scope user mireye-earth https://api.mireye.com/mcp
```
Restart Claude Code, run `/mcp`, and follow the browser OAuth flow.
Slash commands appear as:
- `/mcp__mireye-earth__mireye_ask <lat> <lng> <question>`
- `/mcp__mireye-earth__mireye_fetch <lat> <lng> [fields] [preset]`
Or just chat naturally — Claude Code will call the tool when relevant.
---
## Wire it into Cursor
Cursor's MCP config lives at `~/.cursor/mcp.json` (global) or
`<repo>/.cursor/mcp.json` (workspace). Same shape as Claude Desktop:
```json
{
"mcpServers": {
"mireye-earth": {
"command": "uvx",
"args": ["mireye-mcp"]
}
}
}
```
Open **Cursor → Settings → MCP** and confirm `mireye-earth` shows the two
green tools. Catalog resources and prompts appear when the client supports
those MCP primitives.
---
## Wire it into a custom agent
If you're building an MCP client with the `mcp` Python SDK, point its
`StdioServerParameters` at the installed entry point:
```python
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
params = StdioServerParameters(command="uvx", args=["mireye-mcp"])
async with stdio_client(params) as (read, write):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await session.list_tools()
# tools.tools is [mireye_ask, mireye_fetch]
resources = await session.list_resources()
prompts = await session.list_prompts()
result = await session.call_tool(
"mireye_ask",
{"lat": 40.7128, "lng": -74.0060, "question": "elevation?"},
)
```
---
## Configuration
| Env var | Default | Purpose |
|--------------------|----------------------------------|----------------------------------|
| `MIREYE_BASE_URL` | `https://api.mireye.com` | HTTP base URL the tools POST to. Stored login credentials only attach when they were created against this same URL. |
| `MIREYE_TIMEOUT_S` | `60` | Per-request timeout in seconds. |
| `MIREYE_BEARER_TOKEN` | unset | Optional Mireye bearer token. Overrides stored credentials for tool calls; `status` reports on the stored login first. |
| `MIREYE_MCP_CREDENTIALS_FILE` | `~/.config/mireye-mcp/credentials.json` | Stored token path used by `login` / `status` / `logout`. |
## Authentication
The local stdio adapter does not perform native MCP OAuth discovery.
The HTTP API requires bearer auth for `/v1/ask` and `/v1/fetch`, so run
the device login helper once:
```bash
mireye-mcp login
```
The command prints a verification URL and code, waits for approval in
the Mireye account page, and stores a Mireye API token locally. You can
also provide a token directly:
```json
{
"mcpServers": {
"mireye-earth": {
"command": "uvx",
"args": ["mireye-mcp"],
"env": {
"MIREYE_BEARER_TOKEN": "eyJ..."
}
}
}
}
```
Check or remove local credentials:
```bash
mireye-mcp status
mireye-mcp logout
mireye-mcp logout --revoke
```
### Credentials are bound to their base URL
`login` records the `MIREYE_BASE_URL` it ran against, and the stored
token is only ever sent to that same URL. If `MIREYE_BASE_URL` later
points somewhere else, tool calls behave as logged out and the error
names both URLs — re-run `mireye-mcp login` against the new URL,
or set `MIREYE_BEARER_TOKEN` explicitly. Credentials files without a
recorded `base_url` (e.g. hand-written) are treated as bound to the
default `https://api.mireye.com`.
Two more guardrails:
- Tokens of any kind are never sent over plain `http://`, except to
loopback hosts (`localhost` / `127.0.0.1` / `[::1]`) for local
development.
- `status` and `logout --revoke` operate on the **stored** base URL, so
you can always inspect or revoke a stored login even while
`MIREYE_BASE_URL` points elsewhere.
For native MCP OAuth, configure your client to use the hosted remote MCP
URL `https://api.mireye.com/mcp` instead of launching this stdio
binary. The remote endpoint advertises OAuth metadata and uses browser
OAuth 2.1 + PKCE.
---
## Troubleshooting
**Server doesn't appear in Claude Desktop.** Check that `uvx` resolves
on the PATH used by the GUI app (macOS launches GUI apps with a minimal
PATH). Test from a terminal: `which uvx`. If empty, install `uv`:
`curl -LsSf https://astral.sh/uv/install.sh | sh`. If `uvx` lives at
`/Users/you/.local/bin/uvx`, use the absolute path in `command`.
**Tools not appearing under the 🔌 menu after restart.** Watch
`~/Library/Logs/Claude/mcp-server-mireye-earth.log`. The server logs to
stderr on startup; you should see `[mireye-mcp] starting
base_url=…`. If there's no log, `uvx` isn't being invoked — usually a
PATH issue.
**`ConnectError` / `ReadTimeout`** on tWhat people ask about mireye-earth-mcp
What is Mireye-Labs/mireye-earth-mcp?
+
Mireye-Labs/mireye-earth-mcp is mcp servers for the Claude AI ecosystem. MCP server for Mireye Earth — published source of the mireye-mcp PyPI package (snapshot-synced from a private monorepo) It has 0 GitHub stars and was last updated today.
How do I install mireye-earth-mcp?
+
You can install mireye-earth-mcp by cloning the repository (https://github.com/Mireye-Labs/mireye-earth-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is Mireye-Labs/mireye-earth-mcp safe to use?
+
Mireye-Labs/mireye-earth-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains Mireye-Labs/mireye-earth-mcp?
+
Mireye-Labs/mireye-earth-mcp is maintained by Mireye-Labs. The last recorded GitHub activity is from today, with 0 open issues.
Are there alternatives to mireye-earth-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy mireye-earth-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/mireye-labs-mireye-earth-mcp)<a href="https://claudewave.com/repo/mireye-labs-mireye-earth-mcp"><img src="https://claudewave.com/api/badge/mireye-labs-mireye-earth-mcp" alt="Featured on ClaudeWave: Mireye-Labs/mireye-earth-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。