@marsnme/mcp-gateway 0.1.4 → 0.1.6

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.
Files changed (2) hide show
  1. package/README.md +8 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,9 @@
1
1
  # @marsnme/mcp-gateway
2
+
3
+ <p align="center">
4
+ <img src="https://raw.githubusercontent.com/Marsmanleo/MarsNMe/main/docs/assets/demo.gif" alt="MarsNMe demo" width="640" />
5
+ </p>
6
+
2
7
  MarsNMe MCP Gateway for memory tools over streamable HTTP transport.
3
8
 
4
9
  This package runs an MCP server at `POST /mcp` and exposes health status at `GET /health`.
@@ -23,8 +28,8 @@ After startup:
23
28
 
24
29
  ## Required environment variables
25
30
  - `MCP_PROFILE`
26
- - Supported values: `coco` or `toto`
27
- - Default: `coco`
31
+ - Any lowercase profile ID matching `^[a-z][a-z0-9_-]*$` (for example: `coco`, `toto`, `my-agent`)
32
+ - Legacy built-in IDs: `coco` and `toto`
28
33
  - `SUPABASE_BASE_URL`
29
34
  - Your Supabase REST project URL
30
35
  - `SUPABASE_SERVICE_ROLE_KEY` (recommended) or `SUPABASE_SERVICE_KEY`
@@ -34,7 +39,7 @@ After startup:
34
39
 
35
40
  ## Common optional environment variables
36
41
  - `PORT`
37
- - Overrides default port (`18790` for `coco`, `18791` for `toto`)
42
+ - Overrides default port (`18790`)
38
43
  - `MCP_REQUIRE_BEARER`
39
44
  - Set `true` to require `Authorization: Bearer <token>` on MCP calls
40
45
  - `MCP_OAUTH_ENABLED`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marsnme/mcp-gateway",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "mcpName": "io.github.Marsmanleo/marsnme",
5
5
  "private": false,
6
6
  "description": "Agent-agnostic, LLM-agnostic memory backend for MCP-compatible tools",