AgentHubAgentHub

Append Log MCP

MCP ServerMCP Registry官方收录

io.github.bobbyhouse/append-log-mcp · v1.0.0

A generic append-only log MCP server. Persist timestamped JSON entries and query them by recency.

概览

Append Log MCP 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

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

{
  "mcpServers": {
    "append-log-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "roberthouse224/append-log-mcp:1.0.0"
      ],
      "env": {
        "APPEND_LOG_TOOLS": "<APPEND_LOG_TOOLS>"
      }
    }
  }
}

环境变量

APPEND_LOG_FILE可选

Path to the JSONL log file inside the container. Defaults to append-log.jsonl in the current working directory.

APPEND_LOG_TOOLS必填

Comma-separated list of tools to expose. Available: append, query

相关资源

统一 Manifest

{
  "id": "io.github.bobbyhouse/append-log-mcp",
  "type": "mcp-server",
  "version": "1.0.0",
  "displayName": "Append Log MCP",
  "description": "A generic append-only log MCP server. Persist timestamped JSON entries and query them by recency.",
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "roberthouse224/append-log-mcp:1.0.0",
        "runtimeHint": "docker",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "APPEND_LOG_FILE",
            "description": "Path to the JSONL log file inside the container. Defaults to append-log.jsonl in the current working directory."
          },
          {
            "name": "APPEND_LOG_TOOLS",
            "description": "Comma-separated list of tools to expose. Available: append, query",
            "isRequired": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.bobbyhouse/append-log-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.bobbyhouse%2Fappend-log-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Append Log MCP — MCP Server 安装与配置 · AgentHub