AgentHubAgentHub

emem — Earth memory protocol

MCP ServerMCP Registry官方收录

io.github.Vortx-AI/emem · v0.0.9

Content-addressed, ed25519-signed memory of every place on Earth. Apache-2.0, no keys for reads.

概览

emem — Earth memory protocol 是一个MCP Server,收录自 官方 MCP Registry。支持 streamable-http 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "emem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/vortx-ai/emem:latest"
      ]
    }
  }
}

环境变量

EMEM_BIND可选

Bind address for the HTTP server. Defaults to 0.0.0.0:5051 inside the container.

EMEM_DATA可选

Path to the persistent data directory (sled cache + ed25519 identity). Mount a volume here.

EMEM_PUBLIC_URL可选

Optional canonical origin for self-referencing URLs in MCP responses (e.g. https://emem.dev). When unset the server falls back to urn:emem.

EMEM_TLS_DOMAINS可选

Comma-separated hostnames for built-in Let's Encrypt ACME (TLS-ALPN-01). When set, the server binds 0.0.0.0:443 instead of EMEM_BIND.

相关资源

统一 Manifest

{
  "id": "io.github.Vortx-AI/emem",
  "type": "mcp-server",
  "version": "0.0.9",
  "displayName": "emem — Earth memory protocol",
  "description": "Content-addressed, ed25519-signed memory of every place on Earth. Apache-2.0, no keys for reads.",
  "repository": {
    "url": "https://github.com/Vortx-AI/emem",
    "source": "github"
  },
  "homepage": "https://emem.dev",
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "ghcr.io/vortx-ai/emem:latest",
        "runtimeHint": "docker",
        "transport": "streamable-http",
        "environmentVariables": [
          {
            "name": "EMEM_BIND",
            "description": "Bind address for the HTTP server. Defaults to 0.0.0.0:5051 inside the container."
          },
          {
            "name": "EMEM_DATA",
            "description": "Path to the persistent data directory (sled cache + ed25519 identity). Mount a volume here."
          },
          {
            "name": "EMEM_PUBLIC_URL",
            "description": "Optional canonical origin for self-referencing URLs in MCP responses (e.g. https://emem.dev). When unset the server falls back to urn:emem."
          },
          {
            "name": "EMEM_TLS_DOMAINS",
            "description": "Comma-separated hostnames for built-in Let's Encrypt ACME (TLS-ALPN-01). When set, the server binds 0.0.0.0:443 instead of EMEM_BIND."
          }
        ]
      }
    ],
    "remotes": [
      {
        "transport": "streamable-http",
        "url": "https://emem.dev/mcp"
      }
    ]
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.Vortx-AI/emem",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.Vortx-AI%2Femem/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
emem — Earth memory protocol — MCP Server 安装与配置 · AgentHub