Skip to content

MCP Overview

Artland provides an MCP (Model Context Protocol) server that lets AI assistants interact with your Artland data using natural language.

MCP is an open protocol that allows AI models to use external tools. Instead of writing code or curl commands, you can ask an AI assistant to sync your artworks, check your catalog, or update your profile — and it calls the Artland API for you.

Your AI Assistant (Claude, Cursor, etc.)
MCP Client ──→ Artland MCP Server ──→ Artland API
Tool Results

The MCP server exposes 11 tools that map directly to REST endpoints:

ToolREST Equivalent
artland_sync_artworkPOST /v1/artworks
artland_list_artworksGET /v1/artworks
artland_sync_artistPOST /v1/artists
artland_list_artistsGET /v1/artists
artland_sync_eventPOST /v1/events
artland_list_eventsGET /v1/events
artland_get_profileGET /v1/profile
artland_update_profilePUT /v1/profile
artland_searchGET /v1/search
artland_get_changelogGET /v1/changelog
artland_get_sync_statusGET /v1/sync/status
SSE: https://api.artland.com/v1/mcp/sse
POST: https://api.artland.com/v1/mcp/message

The MCP server uses the same API keys as the REST API. Pass your key in the connection headers:

{
"headers": {
"Authorization": "Bearer *** **[MCP Tools](/mcp/tools)** for detailed input schemas and examples.
- **[Client Setup](/mcp/client-setup)** for configuration guides.