@ekkos/mcp-server 1.2.2 → 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 +18 -1
- package/build/index.d.ts +7 -9
- package/build/index.js +100 -2222
- package/package.json +23 -5
- package/CHANGELOG.md +0 -136
- package/PUBLISH.md +0 -125
- package/ekkos-mcp-server-1.2.0.tgz +0 -0
- package/index.ts +0 -2478
- package/tsconfig.json +0 -19
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Give your AI agent (Claude, GPT-4, etc.) in Cursor, Windsurf, or VS Code a persistent memory. It remembers solutions, learns from mistakes, and gets smarter over time.
|
|
4
4
|
|
|
5
|
+
> Last updated: 2025-01-13 (testing all secrets)
|
|
6
|
+
|
|
5
7
|
## Quick Start
|
|
6
8
|
|
|
7
9
|
### 1. Install
|
|
@@ -23,7 +25,22 @@ npm install -g @ekkos/mcp-server
|
|
|
23
25
|
|
|
24
26
|
**For Windsurf:** Add to `~/.codeium/windsurf/mcp_config.json`
|
|
25
27
|
|
|
26
|
-
|
|
28
|
+
```json
|
|
29
|
+
{
|
|
30
|
+
"mcpServers": {
|
|
31
|
+
"ekkos-memory": {
|
|
32
|
+
"url": "https://mcp.ekkos.dev/api/v1/mcp/sse?api_key=your-api-key-here",
|
|
33
|
+
"transport": "sse",
|
|
34
|
+
"headers": {
|
|
35
|
+
"Authorization": "Bearer your-api-key-here",
|
|
36
|
+
"X-User-ID": "your-user-id-here"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
**For Claude Code:** Add to `~/.claude/settings.json`
|
|
27
44
|
|
|
28
45
|
```json
|
|
29
46
|
{
|
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 {};
|