artic-mcp

artic-mcp

A server that provides access to the Art Institute of Chicago Collection through natural language interactions. This server allows AI models to search the Art Institute of Chicago Collection and have art works available as a Resource.

Category
Visit Server

README

artic-logo

Art Institute of Chicago MCP Server

A Model Context Protocol (MCP) server that provides access to the Art Institute of Chicago Collection through natural language interactions. This server allows AI models to search the art collection at the Art Institute of Chicago and have artworks available as a Resource.

Features

This server provides AI models with the following tools for interacting with the art collection.

1. Search By Title (search-by-title)

Search for artworks by title in the Art Institute of Chicago

  • Inputs:

    • title (string) The title of the artwork to search for.
    • limit (number, optional, default 10) The number of resources to return per page.
    • page (number, optional, default 1) The page of results to return. Used for pagination.
  • Outputs:

    Title: Nighthawks
    Artwork ID: 111628
    Thumbnail alt text: Scene in a diner, viewed through wrap-around glass windows, at night on an empty urban street. A light-skinned man and woman, he in a suit and she in a red dress, sit together at a triangular wood bar, eyes downcast. At left sits another man, his back to the viewer. Behind the counter is a light-skinned man in a white uniform. The interior lights cast a yellow glow that spills onto the street in pale green. Above the diner a sign reads, "Phillies."
    Score: 1055.3839
    
    -----
    Title: Nighthawks
    Artwork ID: 118165
    Thumbnail alt text: A work made of chromogenic print.
    Score: 57.28689
    
    Pagination Info
    Total: 2
    Total Pages: 1
    Current Page: 1
    

2. Get a specific artwork (get-artwork-by-id)

Gets additional information, including the image if available, for a piece of art based on it's id.

  • Inputs:

    • id (number) The ID of the artwork to retrieve.
  • Outputs:

    Title: Nighthawks
    Artist: Edward Hopper (American, 1882–1967)
    Artist ID: 34996
    Description: <p>About <em>Nighthawks</em> Edward Hopper recollected, “unconsciously, probably, I was painting the loneliness of a large city.” In an all-night diner, three customers sit at the counter opposite a server, each appear to be lost in thought and disengaged from one another. The composition is tightly organized and spare in details: there is no entrance to the establishment, no debris on the streets. Through harmonious geometric forms and the glow of the diner’s electric lighting, Hopper created a serene, beautiful, yet enigmatic scene. Although inspired by a restaurant Hopper had seen on Greenwich Avenue in New York, the painting is not a realistic transcription of an actual place. As viewers, we are left to wonder about the figures, their relationships, and this imagined world.</p>
    
    Image ID: 831a05de-d3f6-f4fa-a460-23008dd58dda
    Place of Origin: United States
    Dimensions: 84.1 × 152.4 cm (33 1/8 × 60 in.)
    Medium: Oil on canvas
    Credit Line: Friends of American Art Collection
    Department: Arts of the Americas
    Is On View: Yes
    Main Reference Number: 1942.51
    Has not been viewed much: No
    Date Start: 1942
    Date End: 1942
    Date: 1942
    Fiscal Year: 1942
    Is Public Domain: No
    Gallery: Gallery 262
    Artwork Type: Painting
    Artist Title: Edward Hopper
    Artist Titles: Edward Hopper
    Style Title: Modernism
    
    
    **image encoded in base64 if available
    

3. Full text search (full-text-search)

Performs a full text search of artworks whose metadata contains the search query.

  • Inputs:

    • query (string) The term to search the metadata for.
    • limit (number, optional, default 10) The number of resources to return per page.
    • page (number, optional, default 1) The page of results to return. Used for pagination.
  • Outputs:

    Title: Untitled
    Artwork ID: 62290
    Thumbnail alt text: A work made of oil and enamel on paper, mounted on composition board.
    Score: 108.70728
    
    -----
    ...
    ...
    -----
    Title: Homage to the Square: Light Passage
    Artwork ID: 5569
    Thumbnail alt text: Painting of overlapping squares in grey, yellow, gold, and orange.
    Score: 104.18398
    
    Pagination Info
    Total: 8399
    Total Pages: 840
    Current Page: 1
    

4. Artist search (search-for-artist)

Search for a specific artist

  • Inputs:

    • name (string) The name of the artist to search for.
    • limit (number, optional, default 10) The number of resources to return per page.
    • page (number, optional, default 1) The page of results to return. Used for pagination.
  • Outputs:

    Title: Vincent van Gogh
    Artist ID: 40610
    Score: 55.865852
    
    -----
    Title: Imitator of Vincent van Gogh
    Artist ID: 47301
    Score: 48.782307
    
    Pagination Info
    Total: 2
    Total Pages: 1
    Current Page: 1
    

5. Find artwork by artist (get-artwork-by-artist)

Find works fo art by an artist

  • Inputs:

    • id (number) The id of the artist to search for artworks. Should be the Artist ID of the search-for-artist tool.
    • limit (number, optional, default 10) The number of resources to return per page.
    • page (number, optional, default 1) The page of results to return. Used for pagination.
  • Outputs:

    Title: The Bedroom
    Artwork ID: 28560
    Thumbnail alt text: Painting of bedroom, blue walls, green window, tan bed, red bedding.
    Score: 11473.843
    
    -----
    .
    .
    .
    -----
    Title: Weeping Tree
    Artwork ID: 52733
    Thumbnail alt text: A work made of reed pen and black-brown ink, with black chalk on off-white wove paper.
    Score: 11.8061
    
    Pagination Info
    Total: 18
    Total Pages: 2
    Current Page: 1
    

Usage

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcp-servers": {
    "artic-museum": {
      "command": "npx",
      "args": [
        "-y",
        "artic-mcp"
      ]
    }
  }
}

Example queries

Here some questions you can ask the AI model when this server in connected:

Can you show me the painting titled "Nighthawks"?
Can you find art done by Vincent van Gogh in 1890 that is on display?
Can you find art by the artist Jackson Pollock?

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Disclaimer

This MCP Server is not officially associated with The Art Institute of Chicago. It is a third-party implementation of the The Art Institute of Chicago's API with a MCP Server.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured