@ekkos/mcp-server 1.2.3 → 2.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/README.md +2 -0
- package/build/index.d.ts +7 -9
- package/build/index.js +99 -2239
- package/package.json +23 -5
- package/CHANGELOG.md +0 -138
- package/PUBLISH.md +0 -127
- package/ekkos-mcp-server-1.2.0.tgz +0 -0
- package/index.ts +0 -2499
- package/tsconfig.json +0 -19
package/README.md
CHANGED
package/build/index.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* ekkOS™ Memory MCP Server
|
|
3
|
+
* ekkOS™ Memory MCP Server (API-Based)
|
|
4
4
|
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* - Layer 1-10 memory systems (working, episodic, semantic, patterns, procedural, collective, meta, codebase, directives, conflicts)
|
|
8
|
-
* - Unified context retrieval via Memory Orchestrator
|
|
9
|
-
* - Pattern search and forging (Golden Loop)
|
|
10
|
-
* - Knowledge graph queries (Graphiti/Neo4j)
|
|
11
|
-
* - Behavioral directives (MUST/NEVER/PREFER/AVOID)
|
|
5
|
+
* SECURE VERSION - Uses only EKKOS_API_KEY for authentication
|
|
6
|
+
* NO direct database access - all operations go through mcp.ekkos.dev API
|
|
12
7
|
*
|
|
13
|
-
* This
|
|
8
|
+
* This is the portable, user-safe version that:
|
|
9
|
+
* - Only requires user's personal API key (no infrastructure secrets)
|
|
10
|
+
* - All database operations handled server-side
|
|
11
|
+
* - API keys are scoped per-user and can be revoked
|
|
14
12
|
*/
|
|
15
13
|
export {};
|