forked from toolprint/mcp-graphql-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmithery.yaml
More file actions
38 lines (35 loc) · 1.13 KB
/
smithery.yaml
File metadata and controls
38 lines (35 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Smithery configuration file: https://smithery.ai/docs/deployments
runtime: "typescript"
startCommand:
type: "http"
configSchema:
type: "object"
required:
- GRAPHQL_ENDPOINT
properties:
GRAPHQL_ENDPOINT:
type: "string"
description: "The GraphQL API endpoint URL"
example: "https://api.github.com/graphql"
GRAPHQL_AUTH_HEADER:
type: "string"
description: "Authorization header for GraphQL requests (e.g., Bearer token)"
example: "Bearer your_token_here"
GRAPHQL_HEADER_X_API_KEY:
type: "string"
description: "Custom API key header for GraphQL requests"
GRAPHQL_HEADER_X_CLIENT_ID:
type: "string"
description: "Custom client ID header for GraphQL requests"
SCHEMA_PATH:
type: "string"
description: "Path to cached GraphQL schema file"
default: "./schema.json"
PORT:
type: "string"
description: "HTTP server port"
default: "3000"
exampleConfig:
GRAPHQL_ENDPOINT: "https://api.github.com/graphql"
GRAPHQL_AUTH_HEADER: "Bearer ghp_your_github_token_here"
PORT: "3000"