-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathserver.json
More file actions
104 lines (104 loc) · 2.91 KB
/
server.json
File metadata and controls
104 lines (104 loc) · 2.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
"name": "io.github.abhishekbhakat/airflow-mcp-server",
"description": "An MCP server for Apache Airflow ",
"repository": {
"url": "https://github.com/abhishekbhakat/airflow-mcp-server",
"source": "github"
},
"version": "0.9.0",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "airflow-mcp-server",
"version": "0.9.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "The base URL for the Airflow API (e.g., http://localhost:8080)",
"isRequired": true,
"format": "string",
"isSecret": false,
"name": "AIRFLOW_BASE_URL"
},
{
"description": "The JWT authentication token for Airflow API access",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "AUTH_TOKEN"
}
],
"packageArguments": [
{
"type": "named",
"name": "--safe",
"description": "Use only read-only tools for safe operations"
},
{
"type": "named",
"name": "--static-tools",
"description": "Use static tools instead of hierarchical discovery"
}
]
},
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "airflow-mcp-server",
"version": "0.8.2",
"transport": {
"type": "streamable-http",
"url": "http://localhost:3000"
},
"environmentVariables": [
{
"description": "The base URL for the Airflow API (e.g., http://localhost:8080)",
"isRequired": true,
"format": "string",
"isSecret": false,
"name": "AIRFLOW_BASE_URL"
},
{
"description": "The JWT authentication token for Airflow API access",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "AUTH_TOKEN"
}
],
"packageArguments": [
{
"type": "named",
"name": "--http",
"description": "Use HTTP (Streamable HTTP) transport"
},
{
"type": "named",
"name": "--port",
"value": "3000",
"description": "Port to run HTTP server on"
},
{
"type": "named",
"name": "--host",
"value": "localhost",
"description": "Host to bind HTTP server to"
},
{
"type": "named",
"name": "--safe",
"description": "Use only read-only tools for safe operations"
},
{
"type": "named",
"name": "--static-tools",
"description": "Use static tools instead of hierarchical discovery"
}
]
}
]
}