@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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ekkos/mcp-server",
3
- "version": "1.2.3",
4
- "description": "ekkOS Memory MCP Server - Universal AI memory across Cursor, Windsurf, VS Code, Claude Code via stdio transport",
3
+ "version": "2.0.0",
4
+ "description": "ekkOS Memory MCP Server - Secure API-based authentication. Only requires EKKOS_API_KEY (no infrastructure secrets).",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "ekkos-mcp": "./build/index.js"
@@ -12,11 +12,29 @@
12
12
  "prepare": "npm run build"
13
13
  },
14
14
  "dependencies": {
15
- "@modelcontextprotocol/sdk": "^0.5.0",
16
- "node-fetch": "^3.3.2"
15
+ "@modelcontextprotocol/sdk": "^0.5.0"
17
16
  },
18
17
  "devDependencies": {
19
18
  "@types/node": "^20.11.0",
20
19
  "typescript": "^5.3.3"
21
- }
20
+ },
21
+ "files": [
22
+ "build/**/*"
23
+ ],
24
+ "keywords": [
25
+ "ekkos",
26
+ "mcp",
27
+ "memory",
28
+ "ai",
29
+ "cursor",
30
+ "windsurf",
31
+ "claude",
32
+ "vscode"
33
+ ],
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/ekkostech/ekkos"
37
+ },
38
+ "author": "ekkOS <dev@ekkos.dev>",
39
+ "license": "Proprietary"
22
40
  }
package/CHANGELOG.md DELETED
@@ -1,138 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to the ekkOS Memory MCP Server will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [1.1.0] - 2025-12-07
9
-
10
- ### Added
11
-
12
- - **Fallback Mechanism**: Direct Supabase queries when unified-context API fails
13
- - **Improved Error Handling**: Better resilience for API connection issues
14
- - **Enhanced Logging**: More detailed error messages and debugging output
15
-
16
- ### Changed
17
-
18
- - **API Integration**: Now uses unified-context API as primary path
19
- - **Response Format**: Improved transformation of unified-context responses to MCP format
20
- - **Tool Reliability**: Better handling of partial failures
21
-
22
- ### Fixed
23
-
24
- - **Connection Issues**: Fallback ensures tools remain functional even if API is down
25
- - **Error Propagation**: Better error messages for debugging
26
-
27
- ## [1.0.0] - 2025-12-05
28
-
29
- ### Added
30
-
31
- - Initial release of ekkOS Memory MCP Server
32
- - MCP Protocol 2025-06-18 support
33
- - Tools:
34
- - `search_memory` - Query all memory layers
35
- - `get_context` - Get unified context
36
- - `capture_event` - Store learning episodes
37
- - `forge_pattern` - Create new patterns
38
- - `track_application` - Track pattern usage
39
- - `record_outcome` - Record pattern outcomes
40
- - `get_memory_stats` - Get system statistics
41
- - HTTP/SSE transport support
42
- - Cloud deployment support
43
-
44
- ---
45
-
46
- ## Version History
47
-
48
- - `1.1.0` - Improved reliability with fallback mechanisms
49
- - `1.0.0` - Initial release
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
-
58
-
59
-
60
-
61
-
62
-
63
-
64
-
65
-
66
-
67
-
68
-
69
-
70
-
71
-
72
-
73
-
74
-
75
-
76
-
77
-
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
-
98
-
99
-
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
-
108
-
109
-
110
-
111
-
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
-
132
-
133
-
134
-
135
-
136
-
137
-
138
-
package/PUBLISH.md DELETED
@@ -1,127 +0,0 @@
1
- # Publishing @ekkos/mcp-server to npm
2
-
3
- ## Pre-Publish Checklist
4
-
5
- - [x] Package renamed to @ekkos/mcp-server
6
- - [x] Version updated to 1.2.0
7
- - [x] Built successfully
8
- - [x] README updated
9
- - [ ] npm login completed
10
- - [ ] Published to npm
11
- - [ ] Tested with npx
12
-
13
- ## Publishing Steps
14
-
15
- ### 1. Login to npm
16
-
17
- ```bash
18
- cd /Volumes/MacMiniPort/DEV/EKKOS/mcp-servers/ekkos-memory
19
- npm login
20
- ```
21
-
22
- **Note:** You'll need to authenticate via browser. npm will open a login page.
23
-
24
- ### 2. Publish Package
25
-
26
- ```bash
27
- npm publish --access public
28
- ```
29
-
30
- **Important:** Scoped packages (@ekkos/*) default to private. Use `--access public` to make it publicly available.
31
-
32
- ### 3. Verify Publication
33
-
34
- ```bash
35
- npm view @ekkos/mcp-server
36
- ```
37
-
38
- Should show version 1.2.0 and package details.
39
-
40
- ### 4. Test with npx
41
-
42
- ```bash
43
- npx -y @ekkos/mcp-server
44
- ```
45
-
46
- Should download and start the server (will fail without env vars, but that's expected).
47
-
48
- ## Post-Publish
49
-
50
- ### Update Documentation
51
-
52
- - [ ] Update Windsurf integration guide
53
- - [ ] Update Cursor integration guide
54
- - [ ] Update platform dashboard wizard
55
- - [ ] Add to ekkOS Connect extension templates
56
-
57
- ### Test Configurations
58
-
59
- **Windsurf:**
60
- ```json
61
- {
62
- "mcpServers": {
63
- "ekkos-memory": {
64
- "command": "npx",
65
- "args": ["-y", "@ekkos/mcp-server"],
66
- "env": {
67
- "EKKOS_API_KEY": "test_key",
68
- "EKKOS_USER_ID": "test_user"
69
- }
70
- }
71
- }
72
- }
73
- ```
74
-
75
- **Cursor:**
76
- ```json
77
- {
78
- "mcpServers": {
79
- "ekkos-memory": {
80
- "command": "npx",
81
- "args": ["-y", "@ekkos/mcp-server"],
82
- "env": {
83
- "EKKOS_API_KEY": "test_key",
84
- "EKKOS_USER_ID": "test_user"
85
- }
86
- }
87
- }
88
- }
89
- ```
90
-
91
- ## Troubleshooting
92
-
93
- **"npm ERR! 402 Payment Required"**
94
- - Scoped packages require paid account OR use `--access public`
95
-
96
- **"npm ERR! 403 Forbidden"**
97
- - Package name already taken
98
- - Try alternate name or check npm account permissions
99
-
100
- **"npm ERR! E401 Unauthorized"**
101
- - Run `npm login` again
102
- - Verify npm account is active
103
-
104
- ## Package Contents
105
-
106
- Verify what's included:
107
- ```bash
108
- npm pack --dry-run
109
- ```
110
-
111
- Should include:
112
- - build/index.js (compiled server)
113
- - package.json
114
- - README.md
115
- - tsconfig.json
116
-
117
- Should NOT include:
118
- - node_modules/
119
- - src/ (only build artifacts)
120
- - .git/
121
-
122
- ---
123
-
124
- **Status:** Ready to publish
125
- **Waiting for:** npm login completion
126
-
127
-
Binary file