@letoribo/mcp-graphql-enhanced 2.1.1 → 2.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/mcp-manifest.json +36 -0
- package/package.json +6 -3
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@letoribo/mcp-graphql-enhanced",
|
|
3
|
+
"version": "2.1.3",
|
|
4
|
+
"description": "Enhanced MCP server for GraphQL with filtered introspection and full variable support.",
|
|
5
|
+
"transport": "stdio",
|
|
6
|
+
"tools": [
|
|
7
|
+
{
|
|
8
|
+
"name": "introspect-schema",
|
|
9
|
+
"description": "Fetch filtered GraphQL schema by type names"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "query-graphql",
|
|
13
|
+
"description": "Execute GraphQL queries with variables and headers"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"resources": [
|
|
17
|
+
{
|
|
18
|
+
"name": "graphql-schema",
|
|
19
|
+
"description": "GraphQL schema as a resource"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"configSchema": {
|
|
23
|
+
"type": "object",
|
|
24
|
+
"required": ["ENDPOINT"],
|
|
25
|
+
"properties": {
|
|
26
|
+
"ENDPOINT": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"description": "GraphQL endpoint URL"
|
|
29
|
+
},
|
|
30
|
+
"HEADERS": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"description": "JSON string of headers"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
package/package.json
CHANGED
|
@@ -16,10 +16,13 @@
|
|
|
16
16
|
"main": "dist/index.js",
|
|
17
17
|
"types": "dist/index.d.ts",
|
|
18
18
|
"bin": {
|
|
19
|
-
"mcp-graphql-enhanced": "
|
|
19
|
+
"mcp-graphql-enhanced": "dist/index.js"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
|
-
"dist"
|
|
22
|
+
"dist",
|
|
23
|
+
"mcp-manifest.json",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"README.md"
|
|
23
26
|
],
|
|
24
27
|
"engines": {
|
|
25
28
|
"node": ">=18"
|
|
@@ -46,5 +49,5 @@
|
|
|
46
49
|
"ts-node": "^10.9.2",
|
|
47
50
|
"typescript": "5.8.3"
|
|
48
51
|
},
|
|
49
|
-
"version": "2.1.
|
|
52
|
+
"version": "2.1.4"
|
|
50
53
|
}
|