@letoribo/mcp-graphql-enhanced 2.3.0 → 2.3.2
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/dist/index.js +1 -1
- package/package.json +1 -2
package/dist/index.js
CHANGED
|
@@ -103,7 +103,7 @@ const introspectSchemaHandler = async ({ typeNames, descriptions = true, directi
|
|
|
103
103
|
};
|
|
104
104
|
toolHandlers.set("introspect-schema", introspectSchemaHandler);
|
|
105
105
|
server.tool("introspect-schema", "Introspect the GraphQL schema. Optionally filter to specific types.", {
|
|
106
|
-
typeNames: z.array(z.string()).optional().describe("
|
|
106
|
+
typeNames: z.array(z.string()).optional().describe("A list of specific type names to filter the introspection."),
|
|
107
107
|
descriptions: z.boolean().optional().default(true),
|
|
108
108
|
directives: z.boolean().optional().default(true),
|
|
109
109
|
}, introspectSchemaHandler);
|
package/package.json
CHANGED
|
@@ -45,10 +45,9 @@
|
|
|
45
45
|
"@graphql-tools/schema": "^10.0.23",
|
|
46
46
|
"@types/node": "^24.7.2",
|
|
47
47
|
"@types/yargs": "17.0.33",
|
|
48
|
-
"graphql-yoga": "^5.13.5",
|
|
49
48
|
"prettier": "^3.6.2",
|
|
50
49
|
"ts-node": "^10.9.2",
|
|
51
50
|
"typescript": "5.8.3"
|
|
52
51
|
},
|
|
53
|
-
"version": "2.3.
|
|
52
|
+
"version": "2.3.2"
|
|
54
53
|
}
|