Bloomy MCP

execute_query

Execute a GraphQL query or mutation with variables.

Parses and executes the provided GraphQL operation string with optional variables. Args: query: Raw GraphQL query or mutation string variables: Optional dictionary of variables to use in the operation Returns: Dictionary containing the operation results or an error message string Raises: Exception: Handled internally, returns error message as string

Input Schema

NameRequiredDescriptionDefault
queryYes
variablesNo

Input Schema (JSON Schema)

{ "properties": { "query": { "title": "Query", "type": "string" }, "variables": { "anyOf": [ { "type": "object" }, { "type": "null" } ], "default": null, "title": "Variables" } }, "required": [ "query" ], "title": "execute_queryArguments", "type": "object" }