What is the Append Log MCP MCP server?
A generic append-only log MCP server. Persist timestamped JSON entries and query them by recency.
How to install Append Log MCP
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
APPEND_LOG_FILEPath to the JSONL log file inside the container. Defaults to append-log.jsonl in the current working directory.
APPEND_LOG_TOOLSrequiredComma-separated list of tools to expose. Available: append, query
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"append-log-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"roberthouse224/append-log-mcp:1.0.0",
"run",
"-i",
"--rm",
"-v",
"append-log-data:/data"
],
"env": {
"APPEND_LOG_FILE": "<YOUR_APPEND_LOG_FILE>",
"APPEND_LOG_TOOLS": "<YOUR_APPEND_LOG_TOOLS>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"append-log-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"roberthouse224/append-log-mcp:1.0.0",
"run",
"-i",
"--rm",
"-v",
"append-log-data:/data"
],
"env": {
"APPEND_LOG_FILE": "<YOUR_APPEND_LOG_FILE>",
"APPEND_LOG_TOOLS": "<YOUR_APPEND_LOG_TOOLS>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"append-log-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"roberthouse224/append-log-mcp:1.0.0",
"run",
"-i",
"--rm",
"-v",
"append-log-data:/data"
],
"env": {
"APPEND_LOG_FILE": "<YOUR_APPEND_LOG_FILE>",
"APPEND_LOG_TOOLS": "<YOUR_APPEND_LOG_TOOLS>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"append-log-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"roberthouse224/append-log-mcp:1.0.0",
"run",
"-i",
"--rm",
"-v",
"append-log-data:/data"
],
"env": {
"APPEND_LOG_FILE": "<YOUR_APPEND_LOG_FILE>",
"APPEND_LOG_TOOLS": "<YOUR_APPEND_LOG_TOOLS>"
}
}
}
}Claude Code
claude mcp add append-log-mcp --env APPEND_LOG_FILE=<YOUR_APPEND_LOG_FILE> --env APPEND_LOG_TOOLS=<YOUR_APPEND_LOG_TOOLS> -- docker run -i --rm roberthouse224/append-log-mcp:1.0.0 run -i --rm -v append-log-data:/dataRelated MCP servers
Project Gutenberg MCP
Maintained
Read Project Gutenberg books via MCP. Search, fetch metadata, and retrieve text in passages.
0
View repository →Go
MIT