Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
AUTH_TOKEN | No | A bearer token for an optional `Authorization: Bearer <token>` header for authenticating with the GraphQL API | |
GRAPHQL_ENDPOINT | Yes | The URL of the target GraphQL API |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
introspectGraphQLSchema | Fetches the schema of the target GraphQL API using introspection. Returns the schema in JSON format. |
executeGraphQLOperation | Executes an arbitrary GraphQL query or mutation against the target API. Use introspectGraphQLSchema first to understand the available operations. |