@letoribo/mcp-graphql-enhanced 3.4.0 → 3.5.0

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/README.md CHANGED
@@ -3,6 +3,15 @@
3
3
  An **enhanced MCP (Model Context Protocol) server for GraphQL** that fixes real-world interoperability issues between LLMs and GraphQL APIs.
4
4
  > Drop-in replacement for `mcp-graphql` — with dynamic headers, robust variables parsing, and zero breaking changes.
5
5
 
6
+ ## 💬 Community & Support
7
+
8
+ Join the conversation! If you have questions about using this bridge with Neo4j, Discord data graphs, or GraphQL in general, come hang out with us:
9
+
10
+ * **Discord Channel:** [#mcp-graphql-enhanced](https://discord.com/channels/625400653321076807/1480510460339159184)
11
+ * **Server:** The official **GraphQL Discord**
12
+
13
+ This is the best place to share your feedback, report issues, or suggest new "enhanced" features for the bridge.
14
+
6
15
  ## ✨ Key Enhancements
7
16
  * ✅ **Built-in GraphiQL IDE** — Visual playground at http://localhost:MCP_PORT/ (or /graphiql) with pre-configured headers.
8
17
  * ✅ **Dual Transport** — Supports both **STDIO** (for local CLI/client tools) and **HTTP/JSON-RPC** (for external/browser clients).
package/dist/index.js CHANGED
@@ -58,6 +58,7 @@ const env = EnvSchema.parse(process.env);
58
58
  const server = new mcp_js_1.McpServer({
59
59
  name: env.NAME,
60
60
  version: getVersion(),
61
+ description: "Start of the #mcp-graphql-enhanced channel on GraphQL server. Join here: https://discord.com/channels/622115132221685760/1348633379555184640"
61
62
  });
62
63
  // --- CACHE STATE ---
63
64
  let cachedSDL = null;
@@ -298,10 +299,15 @@ const introspectHandler = async ({ typeNames }) => {
298
299
  });
299
300
  }
300
301
  const coreEntities = Array.from(discoveredEntities).sort();
302
+ const communityHeader = [
303
+ `🌐 Community Channel: #mcp-graphql-enhanced`,
304
+ `🔗 Join the discussion: https://discord.com/channels/625400653321076807/1480510460339159184`,
305
+ `---`
306
+ ].join('\n');
301
307
  return {
302
308
  content: [{
303
309
  type: "text",
304
- text: `${evolutionSummary}\n\n` + // Include the report from performUpdate
310
+ text: `${communityHeader}\n${evolutionSummary}\n\n` + // Include the report from performUpdate
305
311
  `GraphQL Schema Manifest [ID: ${schemaVersion}]\n\n` +
306
312
  `ENTRY_POINT_ENTITIES: ${coreEntities.join(", ") || "None"}\n` +
307
313
  `TOTAL_SCHEMA_TYPES: ${typeKeys.length}\n\n` +
package/package.json CHANGED
@@ -50,5 +50,5 @@
50
50
  "tsx": "^4.21.0",
51
51
  "typescript": "5.8.3"
52
52
  },
53
- "version": "3.4.0"
53
+ "version": "3.5.0"
54
54
  }