artic-mcp

by mikechao
Verified

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

시카고 미술관 MCP 서버

자연어 상호작용을 통해 시카고 미술관 소장품 에 접근할 수 있는 모델 컨텍스트 프로토콜(MCP) 서버입니다. 이 서버를 통해 AI 모델은 시카고 미술관 소장품을 검색하고 해당 작품을 리소스로 이용할 수 있습니다.

특징

이 서버는 AI 모델에 미술 컬렉션과 상호작용하기 위한 다음과 같은 도구를 제공합니다.

1. 제목으로 검색(search-by-title)

시카고 미술관에서 제목으로 작품 검색

  • 입력:
    • title (문자열) 검색할 작품의 제목입니다.
    • limit (숫자, 선택 사항, 기본값 10) 페이지당 반환할 리소스 수입니다.
    • page (숫자, 선택 사항, 기본값 1) 반환할 결과 페이지입니다. 페이지 매기기에 사용됩니다.
  • 출력:지엑스피1

2. 특정 아트워크 가져오기(get-artwork-by-id)

해당 ID를 기반으로 예술 작품에 대한 추가 정보(가능한 경우 이미지 포함)를 얻습니다.

  • 입력:
    • id (숫자) 검색할 아트워크의 ID입니다.
  • 출력:
    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

메타데이터에 검색 쿼리가 포함된 작품에 대한 전체 텍스트 검색을 수행합니다.

  • 입력:
    • query (문자열) 메타데이터를 검색할 용어입니다.
    • limit (숫자, 선택 사항, 기본값 10) 페이지당 반환할 리소스 수입니다.
    • page (숫자, 선택 사항, 기본값 1) 반환할 결과 페이지입니다. 페이지 매기기에 사용됩니다.
  • 출력:
    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. 아티스트 검색(search-for-artist)

특정 아티스트 검색

  • 입력:
    • name (문자열) 검색할 아티스트의 이름입니다.
    • limit (숫자, 선택 사항, 기본값 10) 페이지당 반환할 리소스 수입니다.
    • page (숫자, 선택 사항, 기본값 1) 반환할 결과 페이지입니다. 페이지 매기기에 사용됩니다.
  • 출력:
    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. 아티스트별로 작품 찾기(get-artwork-by-artist)

예술가의 예술 작품을 찾아보세요

  • 입력:
    • id (숫자): 작품을 검색할 아티스트의 ID입니다. search-for-artist 도구의 아티스트 ID여야 합니다.
    • limit (숫자, 선택 사항, 기본값 10) 페이지당 반환할 리소스 수입니다.
    • page (숫자, 선택 사항, 기본값 1) 반환할 결과 페이지입니다. 페이지 매기기에 사용됩니다.
  • 출력:
    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

용법

Claude Desktop과 함께 사용

claude_desktop_config.json 에 다음을 추가하세요:

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

Smithery를 통해 설치

Smithery를 통해 Claude Desktop에 artic-mcp를 자동으로 설치하려면:

npx -y @smithery/cli install @mikechao/artic-mcp --client claude

예제 쿼리

이 서버가 연결되면 AI 모델에 다음과 같은 질문을 할 수 있습니다.

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?

기여하다

기여를 환영합니다! 풀 리퀘스트를 제출해 주세요.

특허

이 MCP 서버는 MIT 라이선스에 따라 라이선스가 부여됩니다. 즉, MIT 라이선스의 조건에 따라 소프트웨어를 자유롭게 사용, 수정 및 배포할 수 있습니다. 자세한 내용은 프로젝트 저장소의 LICENSE 파일을 참조하세요.

부인 성명

이 MCP 서버는 시카고 미술관과 공식적으로 제휴 관계가 없습니다. 시카고 미술관 API를 MCP 서버와 함께 제3자가 구현한 것입니다.

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

자연어 상호작용을 통해 시카고 미술관 소장품에 접근할 수 있는 서버입니다. 이 서버를 통해 AI 모델은 시카고 미술관 소장품을 검색하고 미술 작품을 리소스로 이용할 수 있습니다.

  1. Features
    1. 1. Search By Title (search-by-title)
    2. 2. Get a specific artwork (get-artwork-by-id)
    3. 3. Full text search (full-text-search)
    4. 4. Artist search (search-for-artist)
    5. 5. Find artwork by artist (get-artwork-by-artist)
  2. Usage
    1. Usage with Claude Desktop
  3. Installing via Smithery
    1. Example queries
      1. Contributing
        1. License
          1. Disclaimer
            ID: mhp235tm5l