Met MCP Server

MET Museum collection via MCP — 500K+ artworks, metadata, provenance, open-access images.

Remote serverstreamable-http

What is the Met MCP server?

Met MCP server is a hosted integration for AI assistants that speak the Model Context Protocol. MET Museum collection via MCP — 500K+ artworks, metadata, provenance, open-access images.

What you get

  • Declarative tool definitions — single file per tool, framework handles registration and validation
  • Unified error handling — handlers throw, framework catches, classifies, and formats
  • Pluggable auth: none, jwt, oauth
  • Swappable storage backends: in-memory, filesystem, Supabase, Cloudflare KV/R2/D1
  • Structured logging with optional OpenTelemetry tracing
  • STDIO and Streamable HTTP transports

What the assistant can call

Once Met is connected, these are the calls the assistant has available:

  • met_list_departments — Return all 19 curatorial departments with their numeric IDs and display names
  • met_search_collections — Search the collection by keyword with filters for department, date range, medium, geography, on-view status, public-domain status, and highlight
  • met_get_object — Fetch full records for one or more object IDs — metadata, provenance, artist info, CC0 image URLs, tags, and Wikidata links
  • Prerequisites — The Prerequisites tool exposed by this server
  • Installation — The Installation tool exposed by this server

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Configuration and credentials

You will need 3 environment variables: MCP_TRANSPORT_TYPE, MCP_LOG_LEVEL, MET_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Bun v1.3.0 or higher (or Node.js v24+). - No API key required — the Met Collection API is public and unauthenticated.

Choosing this one

This sits in the file and storage access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Met's toolset — met_list_departments, met_search_collections, met_get_object and 2 more — is a fair guide to whether it matches your workflow. It is maintained by cyanheads; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Met's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the met mcp server does with a few real requests.

Available tools

ToolWhat it does
met_list_departmentsReturn all 19 curatorial departments with their numeric IDs and display names
met_search_collectionsSearch the collection by keyword with filters for department, date range, medium, geography, on-view status, public-domain status, and highlight designation
met_get_objectFetch full records for one or more object IDs — metadata, provenance, artist info, CC0 image URLs, tags, and Wikidata links
PrerequisitesThe Prerequisites tool exposed by this server.
InstallationThe Installation tool exposed by this server.

How to install the Met MCP server

{
  "mcpServers": {
    "met-museum-mcp-server": {
      "type": "streamable-http",
      "url": "https://met-museum.caseyjhand.com/mcp"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Bun v1.3.0 or higher (or Node.js v24+). - No API key required — the Met Collection API is public and unauthenticated.
VariableDescriptionRequired
MCP_TRANSPORT_TYPEConfiguration value read at startup.Optional
MCP_LOG_LEVELConfiguration value read at startup.Optional
MET_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Met to met list departments.
  • Use Met to met search collections.
  • Use Met to met get object.

Frequently asked questions

It connects Met to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (met_list_departments, met_search_collections, met_get_object, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Met directly.