New:Microsoft Teams Notifications Are Now Available in Socket.Learn more →
Get Started

@ultimaps/mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ultimaps/mcp

MCP server that turns data into map images: choropleth, category and pin maps of the world, countries, states, counties and ZIP codes.

latest
npmnpm
Version
0.1.0
Version published
Weekly downloads
65
Maintainers
1
Weekly downloads
 
Created
Source

@ultimaps/mcp

An MCP server for Ultimaps. Ask Claude, Codex or any MCP client for a map and get the image back in the conversation. It covers choropleths from pasted numbers, category maps and pinned locations, for countries, states, provinces, counties, continents and the world.

"Map US states by population." · "Color the EU members by currency." · "Show France's regions with these unemployment rates: …" · "Pin our five offices on a map of Europe."

No account needed. Without an API key the server uses the keyless tier; set ULTIMAPS_API_KEY for plan quotas and larger or unbranded output.

Tools

ToolWhat it does
render_mapRenders a map as an image (PNG, or SVG with a Pro key), shown inline when it is small enough. Choropleth (numbers), categories (labels) or explicit colors, plus pins, title, legend, theme, labels and extra layers. Region names are matched fuzzily, and every correction or miss is reported with suggestions. dryRun: true previews matching and the color plan without rendering.
list_mapsThe map catalog: {id, title, regionType, layers, regionCount, labels}, searchable with query.
get_map_regionsOne map's region keys and titles, 200 per page, searchable by key, title or alias.

All three are read-only. Agents rarely need the discovery tools: render_map accepts region names, codes and aliases directly.

Install

Requires Node.js 20 or newer.

Claude Code

claude mcp add ultimaps -- npx -y @ultimaps/mcp
# with a key:
claude mcp add ultimaps --env ULTIMAPS_API_KEY=um_live_… -- npx -y @ultimaps/mcp

Codex

codex mcp add ultimaps -- npx -y @ultimaps/mcp
# with a key:
codex mcp add ultimaps --env ULTIMAPS_API_KEY=um_live_… -- npx -y @ultimaps/mcp

Codex writes TOML, not the JSON below. The equivalent entry in ~/.codex/config.toml (or .codex/config.toml in a trusted project):

[mcp_servers.ultimaps]
command = "npx"
args = ["-y", "@ultimaps/mcp"]

Claude Desktop

Add this to claude_desktop_config.json:

{
  "mcpServers": {
    "ultimaps": {
      "command": "npx",
      "args": ["-y", "@ultimaps/mcp"],
      "env": { "ULTIMAPS_API_KEY": "" }
    }
  }
}

Cursor

~/.cursor/mcp.json (or .cursor/mcp.json in a project):

{
  "mcpServers": {
    "ultimaps": { "command": "npx", "args": ["-y", "@ultimaps/mcp"] }
  }
}

VS Code

.vscode/mcp.json:

{
  "servers": {
    "ultimaps": { "type": "stdio", "command": "npx", "args": ["-y", "@ultimaps/mcp"] }
  }
}

Configuration

VariableDefaultPurpose
ULTIMAPS_API_KEYnone (keyless)API key from Studio → Workspace → API. An invalid key is an error and never falls back to keyless.
ULTIMAPS_API_URLhttps://api.ultimaps.comPoint at a local API during development (http://localhost:3001). Plain http is only accepted for localhost.

Limits

KeylessFree keyPro key
Renders30/hour, 5/minute500/month, 50/day, 10/minute5,000/month, 1,000/day, 30/minute
OutputPNG up to 1600 px, attributionPNG up to 1600 px at scale 2 (a 3200 px raster), attributionPNG up to 4000 px at scale 4, SVG, no attribution

All keys in a workspace share the monthly quota. The daily and per-minute caps are per key, so a free key stops at 50 renders a day long before the month runs out.

Dry runs skip the monthly quota but still count against rate limits. When five or fewer keyless renders remain in the hour, the result says so.

What a render returns

  • The image, inline, when it is small enough (781 KB for PNG, 98 KB for SVG). The default 1200 px width usually fits. Every render is also written to <tmpdir>/ultimaps-mcp/ and the path is in the result, so in a terminal client the file is the thing you can actually open. Nothing is re-rendered or resampled on your behalf.
  • A text report: auto-corrected and unmatched region keys with suggestions, the resolved choropleth plan, warnings (such as layer_unavailable), a link to open the map in Ultimaps Studio for editing, and the render id for support.
  • An embeddable image URL for keyless PNG renders whose whole spec fits a ~2,000-character URL, so small datasets only. The URL carries the spec, not the image, and renders keyless, so it is not offered when a key is set.
  • structuredContent with the same report as data, described by the tool's outputSchema.

Development

From the repo root:

pnpm install
pnpm --filter @ultimaps/mcp test        # unit + in-process protocol tests
pnpm --filter @ultimaps/mcp build       # → dist/
pnpm -w schema:emit                     # regenerate src/generated from the API's OpenAPI contract
pnpm -w schema:check                    # drift gate (lives in the API test suite)

From packages/mcp, against a local API:

ULTIMAPS_API_URL=http://localhost:3001 node scripts/smoke.mjs   # end-to-end over stdio, spends real render units

src/generated/render-request.schema.json is emitted by packages/api/scripts/emitToolSchemas.ts and must never be edited by hand. Tool and property descriptions live in src/descriptions.ts. Arguments are never validated locally: the API is additive-only, and its 400s carry suggestions.

Release

  • pnpm -w schema:check. If it fails, run pnpm -w schema:emit and commit.
  • Bump version in package.json, server.json (both version fields) and manifest.json.
  • pnpm --filter @ultimaps/mcp publish --access public. prepublishOnly runs the drift gate, type-check, tests and build. Publish from a fully installed checkout of the monorepo, with pnpm on PATH: the drift gate is a jest test inside packages/api, so it cannot run from an unpacked tarball or a partial install.
  • pnpm --filter @ultimaps/mcp bundle, then attach ultimaps-<version>.mcpb to the docs page. Bundling re-checks that step 2 reached all four version fields, and test/packaging.test.ts checks the same thing on every test run. The .mcpb is gitignored and is never rebuilt for you, so rebuild it after the last source edit or it ships a different tool schema than npm does.
  • mcp-publisher publish to update the MCP registry entry (server.json, namespace com.ultimaps).

The package publishes a bin and nothing else. import '@ultimaps/mcp' is not supported and fails by name, because dist/index.js starts a stdio server when it loads.

License

MIT © Ultimaps. See LICENSE.

Keywords

mcp

FAQs

Package last updated on 14 Sep 2026

Related posts