query
Execute GraphQL queries with specified variables using the MCP server, enabling AI models to interact with GraphQL APIs for data retrieval and processing.
Instructions
Query a GraphQL endpoint with the given query and variables
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | ||
variables | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"type": "string"
},
"variables": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}