ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pipeworx-artic

Explore the Art Institute of Chicago's collection — artworks, artists, and exhibitions via the ARTIC public API

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/brucegutman/pipeworx-artic
Or

Art Institute of Chicago

One of the oldest and largest art museums in the United States, the Art Institute of Chicago holds nearly 300,000 works. Their public API exposes rich data about artworks, artists, and exhibitions — no API key required.

Tools

ToolDescription
search_artworksFull-text search across the entire collection (e.g., "monet water lilies")
get_artworkFetch a detailed record for a single artwork by its ARTIC ID
get_artistBiographical info and associated works for an artist by ID
get_exhibitionsBrowse current and past exhibitions

When you'd use this

  • Answering questions about specific paintings or artists in the ARTIC collection
  • Pulling structured art data for educational apps or classroom tools
  • Cross-referencing exhibitions when planning a trip to Chicago
  • Feeding artwork descriptions into downstream analysis or summarization

Try it out

Look up Grant Wood's American Gothic (artwork ID 6565):

curl -s -X POST https://gateway.pipeworx.io/artic/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_artwork","arguments":{"id":6565}}}'

Returns title, artist, date, medium, dimensions, image URL (via IIIF), description, and provenance.

MCP client config

{
  "mcpServers": {
    "pipeworx-artic": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/artic/mcp"]
    }
  }
}

Notes

  • Image URLs use the IIIF protocol — you can append size parameters to request specific dimensions
  • Search supports up to 100 results per call
  • All data is free and open-access

Metadata

Stars4190
Views0
Updated2026-04-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-brucegutman-pipeworx-artic": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.