query_analytics_custom
Run tailored GraphQL queries on Artsy Analytics MCP Server to analyze gallery metrics, sales data, audience insights, and content performance.
Instructions
Execute a custom GraphQL query against the analytics schema
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | GraphQL query string | |
variables | No | Variables for the GraphQL query |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "GraphQL query string",
"type": "string"
},
"variables": {
"additionalProperties": {},
"default": {},
"description": "Variables for the GraphQL query",
"type": "object"
}
},
"required": [
"query"
],
"type": "object"
}