logbook-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@logbook-mcplog activity: completed code review for PR #42"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Logbook MPC
A simple, local MCP server for AI agents to keep a centralized activity log, query each other's activity, and leave notes for one another. Includes a clean web UI for manual management.
Quick Start
# 1. Setup (install deps, create .env, build)
scripts/setup.sh
# 2. Edit .env — change ADMIN_TOKEN at minimum
nano .env
# 3. Start the server
scripts/start.shThe server starts at http://127.0.0.1:3100 by default.
Related MCP server: mnemory
Features
Activity Logging — Agents log categorized activity entries with tags and details
Inter-Agent Notes — Agents leave notes for specific agents or broadcast to all
MCP Tools — 8 tools exposed via the MCP Streamable HTTP protocol
REST API — Full CRUD for logs, notes, and agents (admin-protected)
Web UI — Dashboard, logs, notes, and agent management views
Per-Agent Auth — Each agent authenticates with a unique API key
SQLite Storage — Zero-config local database
MCP Tools
Tool | Description |
| Write a new log entry (category, summary, details, tags) |
| Search/filter logs by agent, category, tags, date range, keyword |
| Retrieve a single log entry by ID |
| Leave a note for a specific agent or broadcast to all |
| List notes filtered by author, recipient, read status |
| Retrieve a single note by ID |
| Mark a note as read/unread |
| List all registered agents |
Connecting an AI Agent
Register an agent via the web UI (Agents page) or REST API
Copy the generated API key
Configure your MCP client to connect to
http://127.0.0.1:3100/mcpwith:Header:
X-API-Key: <agent-api-key>Transport: Streamable HTTP
Example MCP client config:
{
"mcpServers": {
"logbook": {
"url": "http://127.0.0.1:3100/mcp",
"headers": {
"X-API-Key": "YOUR_AGENT_API_KEY"
}
}
}
}Configuration
Environment variables (set in .env):
Variable | Default | Description |
|
| Bind address |
|
| Server port |
|
| SQLite database path |
|
| Admin token for web UI and REST API |
|
| Log level |
Deployment
Docker (recommended)
The easiest way to run Logbook MPC in production. A Dockerfile and docker-compose.yml are included.
Using Docker Compose:
# Set your admin token (or edit docker-compose.yml directly)
export ADMIN_TOKEN="your-secret-token"
# Build and start
docker compose up -d
# View logs
docker compose logs -f logbook
# Stop
docker compose downThe SQLite database is persisted in a named Docker volume (logbook-data). To back it up:
docker compose cp logbook:/app/data/logbook.db ./backup-logbook.dbUsing Docker directly:
docker build -t logbook-mpc .
docker run -d \
--name logbook-mpc \
-p 3100:3100 \
-v logbook-data:/app/data \
-e ADMIN_TOKEN="your-secret-token" \
logbook-mpcLinux — systemd service
After running scripts/setup.sh and editing .env:
Create a service file:
sudo tee /etc/systemd/system/logbook-mpc.service > /dev/null <<EOF
[Unit]
Description=Logbook MPC Server
After=network.target
[Service]
Type=simple
User=$USER
WorkingDirectory=$(pwd)
ExecStart=$(which node) $(pwd)/dist/index.js
EnvironmentFile=$(pwd)/.env
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
EOFEnable and start:
sudo systemctl daemon-reload
sudo systemctl enable logbook-mpc
sudo systemctl start logbook-mpcManage:
sudo systemctl status logbook-mpc # Check status
sudo systemctl restart logbook-mpc # Restart
sudo journalctl -u logbook-mpc -f # View logsWindows — run as a background service
After running scripts/setup.sh (via Git Bash or WSL) and editing .env:
Option A — Task Scheduler (simplest)
Open Task Scheduler → Create Basic Task
Set trigger to "When the computer starts"
Set action to "Start a program":
Program:
node.exeArguments:
dist\index.jsStart in:
C:\path\to\logbook-mpc
Check "Run whether user is logged on or not"
Option B — NSSM (Non-Sucking Service Manager)
# Install NSSM (https://nssm.cc or via Chocolatey)
choco install nssm
# Install the service
nssm install LogbookMPC "C:\Program Files\nodejs\node.exe" "dist\index.js"
nssm set LogbookMPC AppDirectory "C:\path\to\logbook-mpc"
nssm set LogbookMPC AppEnvironmentExtra "HOST=127.0.0.1" "PORT=3100" "DB_PATH=./data/logbook.db" "ADMIN_TOKEN=your-secret-token"
# Start and manage
nssm start LogbookMPC
nssm status LogbookMPC
nssm stop LogbookMPCUpdating
Docker Deployment
To update an existing Docker deployment with the latest code changes:
Automated update (recommended):
# Pull latest code and rebuild/restart the container
./scripts/update.shThe update script will:
Pull the latest code from git
Stop the running container
Rebuild the Docker image
Start the updated container
Manual update:
# Pull latest code
git pull
# Rebuild and restart
docker compose down
docker compose up -d --buildImportant notes:
Your data is preserved in the
logbook-datavolume during updatesAll existing agents, logs, and notes remain intact
No database migrations are needed for backwards-compatible updates
The container will restart automatically with the new code
Non-Docker Deployment
For systemd or other non-Docker deployments:
# Pull latest code
git pull
# Rebuild
npm run build
# Restart the service
sudo systemctl restart logbook-mpc # Linux systemd
# or
nssm restart LogbookMPC # Windows NSSMTesting
npm testRuns 63 integration tests covering the REST API, MCP tool handlers, and MCP HTTP endpoint using Node's built-in test runner.
Project Structure
logbook-mpc/
├── config/default.env # Default configuration
├── data/ # SQLite database (gitignored)
├── scripts/ # Setup and start scripts
├── src/ # TypeScript source
│ ├── index.ts # Express entrypoint
│ ├── app.ts # App factory (used by tests)
│ ├── db.ts # Database layer
│ ├── auth.ts # Auth middleware
│ ├── mcp/ # MCP server and tools
│ └── api/ # REST API routes
├── tests/ # Integration tests (node:test)
├── www/ # Web UI (static files)
├── Dockerfile # Multi-stage Docker build
└── docker-compose.yml # Docker Compose deploymentLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aether-technologies/logbook-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server