Skip to main content
Glama
sunling

log-reflect-mcp

by sunling

log-reflect-mcp

log-reflect-mcp is a local-first MCP server for a personal recording system. It gives an AI client a small, explicit interface for capturing and retrieving Markdown records while keeping the records in a separate repository.

It is designed to work with the directory conventions used by log-reflect-practice:

daily/
├── journal/{YYYY}/{YYYYMM}/
└── inputs/{YYYY}/{YYYYMM}/
practices/

Current scope

The first version intentionally exposes only four tools:

  • capture_journal: create or append a personal journal fragment.

  • capture_input: save an external input as a Markdown note.

  • get_records_by_date_range: retrieve journal and input records for review.

  • search_records: search record contents.

The MCP server handles access and storage. Agent Skills remain responsible for judgment: how lightly to edit a journal, what belongs in an input note, how to review seven days, and when a recurring theme is ready to become a Practice.

Related MCP server: ai-journal

Safety boundaries

  • The source repository contains no personal records or credentials.

  • The server can only read daily/journal/ and daily/inputs/.

  • New records are written only inside those two directories.

  • Existing input files are never silently overwritten.

  • If more than one journal file exists for a date, the write stops instead of guessing.

Setup

Requirements: Node.js 22 or later.

npm install
cp .env.example .env

Set the absolute path to your records repository:

RECORDS_REPO_PATH=/absolute/path/to/log-reflect-practice

Build and start the stdio server:

npm run build
RECORDS_REPO_PATH=/absolute/path/to/log-reflect-practice npm start

Example client configuration

After building, point an MCP client at the compiled server:

{
  "mcpServers": {
    "log-reflect": {
      "command": "node",
      "args": ["/absolute/path/to/log-reflect-mcp/dist/src/server.js"],
      "env": {
        "RECORDS_REPO_PATH": "/absolute/path/to/log-reflect-practice",
        "RECORDS_TIME_ZONE": "America/Los_Angeles"
      }
    }
  }
}

Development

npm run check
npm test

To inspect the tools interactively:

npx @modelcontextprotocol/inspector node dist/src/server.js

Roadmap

  • Add MCP resources for reading individual records.

  • Add review and develop-practice prompts without moving judgment into storage code.

  • Add an opt-in Git commit workflow.

  • Add a GitHub-backed storage adapter.

  • Add Streamable HTTP and OAuth only after the local workflow is stable.

Install Server
A
license - permissive license
B
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    Not graded
    quality
    B
    maintenance
    A local MCP server for journaling, organizing, and recalling your work. It captures entries as plain markdown files, indexes them for full-text and structured search, and enables querying via natural language.
    1
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides persistent long-term memory for AI assistants with tag-based retrieval, wiki-style linking, and source references, storing memories as markdown files with SQLite index.
    1
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables writing text content to Markdown files with folder organization and overwrite control, and listing recent Markdown files.

View all related MCP servers

Related MCP Connectors

  • Search, save, and set reminders in your personal MarkIt library of links, posts, and notes.

  • Create, validate, edit, export (markdown/svg/png/mermaid), and search JSON Canvas files.

  • Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.

View all MCP Connectors

Latest Blog Posts

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/sunling/log-reflect-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server