@letoribo/mcp-graphql-enhanced 2.3.2 → 3.0.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/LICENSE +17 -1
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2024 Boris Besemer
|
|
3
|
+
Copyright (c) 2024 Boris Besemer (Original Work)
|
|
4
|
+
Copyright (c) 2025-2026 [letoribo] (Enhanced Architecture, NPM Refactoring & Discord Graph Infrastructure)
|
|
4
5
|
|
|
5
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
7
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -19,3 +20,18 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
19
20
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
21
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
22
|
SOFTWARE.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
PROJECT EVOLUTION & SOVEREIGNTY NOTE:
|
|
26
|
+
As of mid-2025, this project has undergone a fundamental architectural shift.
|
|
27
|
+
The legacy Bun-based implementation has been decommissioned and replaced with
|
|
28
|
+
a surgical, production-ready NPM/Node.js core for maximum stability.
|
|
29
|
+
|
|
30
|
+
This "Enhanced" version was battle-tested as the architectural engine for the
|
|
31
|
+
"Neo4j Discord-as-a-Database" project (mcp-neo4j-discord.vercel.app), handling
|
|
32
|
+
large-scale graph datasets.
|
|
33
|
+
|
|
34
|
+
While active real-time data ingestion is currently throttled due to persistent
|
|
35
|
+
infrastructure challenges and blackouts in Odesa, the codebase remains the
|
|
36
|
+
sovereign standard for high-performance GraphRAG, 3D visualization interface,
|
|
37
|
+
and resilient AI intent parsing. Developed under pressure in Odesa, Ukraine.
|
package/dist/index.js
CHANGED
|
@@ -73,6 +73,9 @@ server.resource("graphql-schema", new URL(env.ENDPOINT).href, async (uri) => {
|
|
|
73
73
|
});
|
|
74
74
|
const toolHandlers = new Map();
|
|
75
75
|
const introspectSchemaHandler = async ({ typeNames, descriptions = true, directives = true }) => {
|
|
76
|
+
if (typeNames === null) {
|
|
77
|
+
typeNames = undefined;
|
|
78
|
+
}
|
|
76
79
|
try {
|
|
77
80
|
if (typeNames && typeNames.length > 0) {
|
|
78
81
|
const filtered = await introspectTypes(env.ENDPOINT, env.HEADERS, typeNames);
|
package/package.json
CHANGED