Connects your MCP client to The Metropolitan Museum of Art's collection data through Pipeworx's gateway infrastructure. The source documentation doesn't list specific tools, but you can query Met collection information using the ask_pipeworx interface by asking questions in plain English rather than calling structured endpoints. Part of Pipeworx's larger network of 842+ data sources, so you can either use the dedicated Met endpoint or tap into the full gateway. Useful when you're building agents that need to search artwork, retrieve object details, or explore the museum's public collection programmatically without writing custom API clients.
The Metropolitan Museum of Art Collection MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 842+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"metmuseum": {
"url": "https://gateway.pipeworx.io/metmuseum/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 842+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Metmuseum data" })
The gateway picks the right tool and fills the arguments automatically.
MIT