@letoribo/mcp-graphql-enhanced 2.1.5 → 2.1.6
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15,8 +15,8 @@ const getVersion = () => {
|
|
|
15
15
|
// Check for deprecated command line arguments
|
|
16
16
|
checkDeprecatedArguments();
|
|
17
17
|
const EnvSchema = z.object({
|
|
18
|
-
NAME: z.string().default("mcp-graphql"),
|
|
19
|
-
ENDPOINT: z.preprocess((val) => (typeof val === 'string' ? val.trim() : val), z.string().url("ENDPOINT must be a valid URL (e.g., https://example.com/graphql)")).default("
|
|
18
|
+
NAME: z.string().default("mcp-graphql-enhanced"),
|
|
19
|
+
ENDPOINT: z.preprocess((val) => (typeof val === 'string' ? val.trim() : val), z.string().url("ENDPOINT must be a valid URL (e.g., https://example.com/graphql)")).default("https://mcp-neo4j-discord.vercel.app/api/graphiql"),
|
|
20
20
|
ALLOW_MUTATIONS: z
|
|
21
21
|
.enum(["true", "false"])
|
|
22
22
|
.transform((value) => value === "true")
|
package/package.json
CHANGED