Activity Log MCP Server
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., "@Activity Log MCP Serverlog a decision to migrate database to PostgreSQL"
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.
Activity Log MCP Server & Dashboard
A complete, persistent activity log system built with TypeScript. It allows any Model Context Protocol (MCP) compatible AI assistant (Gemini, Claude, Cursor, etc.) to log events, decisions, and system logs over HTTP, and provides a sleek vanilla web dashboard to inspect, search, filter, and monitor the ledger in real-time.
Designed with a "black box flight recorder / terminal ledger" aesthetic, and backed by a local JSON file database.
Technical Stack
MCP Server: FastMCP (TypeScript) using
httpStreamtransport for remote access.Dashboard Backend: Express.js serving static assets and REST API endpoints.
Dashboard Frontend: Plain HTML, custom modern CSS, and vanilla JS with a responsive dark terminal aesthetic (paired fonts, dynamic tag colors per client source, automatic debounced search, collapsible metadata blocks, and ID hashing to optimize redraws).
Database: Local filesystem JSON storage (
activity_log.jsonin the project root).
Related MCP server: roo-activity-logger
Getting Started
1. Environment Variables Configuration
Copy the example environment file:
cp .env.example .envFill in the values inside
.env(optional):MCP_PORT: The port for the MCP server (default:8787).DASHBOARD_PORT: The port for the web dashboard (default:4000).
2. Installation & Build
# Install dependencies
npm install
# Compile TypeScript
npm run build
# Start both servers (MCP Server + Dashboard Backend) concurrently
npm startUpon start, the local JSON file database activity_log.json will be automatically initialized in the project root as log entries arrive.
Connecting an AI Client
Since the server is initialized with transportType: "httpStream", it runs as a remote server over HTTP rather than stdio. Any MCP-compatible AI assistant can connect to it.
The server exposes two main endpoints:
HTTP Streaming (Streamable HTTP):
http://localhost:8787/mcp(Used by modern clients like Gemini / Google Antigravity).SSE (Server-Sent Events):
http://localhost:8787/sse(Used by standard SSE clients like Cursor or the MCP Inspector).
A. Cursor IDE Configuration
You can configure Cursor to use this server either globally or on a project level.
Option 1: Project-Specific Configuration
Create a .cursor/mcp.json file in the root of your Cursor workspace and add:
{
"mcpServers": {
"activity-log": {
"type": "sse",
"url": "http://localhost:8787/sse"
}
}
}Option 2: Global Configuration via Settings GUI
Open Cursor Settings (click the Gear icon in the top-right corner).
Go to Features -> MCP.
Click + Add New MCP Server.
Set:
Name:
activity-logType:
SSEURL:
http://localhost:8787/sse
Click Save.
B. Google Antigravity IDE Configuration
To register the server globally inside the Antigravity IDE:
Open the settings file
~/.gemini/config/mcp_config.jsonin your user profile directory.Add your server under
mcpServersusing theserverUrlparameter:
{
"mcpServers": {
"activity-log": {
"serverUrl": "http://localhost:8787/mcp"
}
}
}Save the file and click Refresh in the IDE settings panel.
C. Claude Desktop Configuration
To configure Claude Desktop to connect to this server, edit your claude_desktop_config.json (located at %APPDATA%\Claude\claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS) and add:
{
"mcpServers": {
"activity-log": {
"command": "node",
"args": [
"c:/Projects/save-mcp/dist/server.js"
],
"env": {
"MCP_PORT": "8787"
}
}
}
}Exposed MCP Tools
The MCP server exposes three main tools:
log_activity: Saves an activity entry.source(string): The client source name (e.g.,"claude","gemini","cursor").action_type(string): The action category (e.g.,"chat","code_edit","decision","error").content(string): The main body text/log contents.metadata(object, optional): A key-value object of structured context.
get_activity: Retrieves activity logs.source(string, optional): Filter by client source.action_type(string, optional): Filter by action type.limit(number, default20, max200): Maximum entries to fetch.
delete_activity: Deletes a specific entry.id(uuid string): The unique identifier of the entry to delete.
Deployed Mode (Cloud Deployment)
To allow multiple devices or external clients (like cloud-hosted Gemini/Claude API scripts) to log actions to the same database:
Deploy this codebase to a cloud platform like Railway, Fly.io, or Render.
Expose the environment variables (
MCP_PORT,DASHBOARD_PORT) in your cloud provider's dashboard.Persistent Disk: If deploying to container environments, make sure to mount a persistent disk volume to ensure your
activity_log.jsonsurvives restarts.
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.
Related MCP Servers
- AlicenseAquality-maintenanceAn MCP server for managing work logs, research results, and task checkpoints to enable seamless collaboration and state recovery between AI agents. It provides a persistent memory layer for tracking project history and resuming workflows across different sessions or tools.Last updated73
- AlicenseAqualityCmaintenanceMCP server that automatically logs AI coding assistant activities such as command executions and code generation, saving them as JSON files for later search and analysis.Last updated324MIT
- Alicense-qualityCmaintenanceAggregates logs from multiple processes and provides an MCP server for AI agents to access, search, and manage logs in real-time.Last updated8490BSD 3-Clause
- Alicense-qualityDmaintenanceA local MCP server for AI agents to log activities, query logs, and leave notes for each other, featuring a web UI and REST API.Last updatedMIT
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Official remote MCP server for Archivist AI TTRPG campaign memory: characters, sessions, and more.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/AbhitekSingh-stfox/save-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server