Skip to content
VS Code

MarsNMe for VS Code

io.github.marsmanleo/marsnme

Agent-agnostic memory backend that preserves continuity between humans and AI over time.

client:VS Code transport:stdio runtime:npm

Install MarsNMe in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-profile",
      "description": "MCP_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "supabase-base-url",
      "description": "SUPABASE_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "supabase-service-role-key",
      "description": "SUPABASE_SERVICE_ROLE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jina-api-key",
      "description": "JINA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "port",
      "description": "PORT",
      "password": true
    }
  ],
  "servers": {
    "marsnme": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@marsnme/mcp-gateway"
      ],
      "env": {
        "MCP_PROFILE": "${input:mcp-profile}",
        "SUPABASE_BASE_URL": "${input:supabase-base-url}",
        "SUPABASE_SERVICE_ROLE_KEY": "${input:supabase-service-role-key}",
        "JINA_API_KEY": "${input:jina-api-key}",
        "PORT": "${input:port}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

MarsNMe in other clients