record-to-markdown

record-to-markdown

3.2

This document provides instructions for recording conversations with Claude to markdown or Apple Notes using a Model Context Protocol (MCP) server.

The Record-to-Markdown tool allows users to capture conversations with Claude, a conversational AI, and save them in markdown format or directly into Apple Notes. This is achieved by setting up a Model Context Protocol (MCP) server that interfaces with Claude's desktop application. By configuring the Claude desktop application to communicate with the MCP server, users can seamlessly record and organize their conversations for future reference. This setup is particularly useful for users who need to document interactions with AI for analysis, record-keeping, or sharing purposes.

Features

  • Seamless Integration: Easily integrates with Claude's desktop application to record conversations.
  • Markdown Support: Saves conversations in markdown format for easy readability and sharing.
  • Apple Notes Compatibility: Directly records conversations into Apple Notes for convenient access.
  • Customizable Configuration: Users can configure the server path and settings to suit their needs.
  • Open Source: The tool is open-source, allowing users to modify and improve the code as needed.

Usage with Different Platforms

mcp

bash
# clone this repo
git clone https://github.com/29decibel/record-to-markdown

# Edit the Claude desktop config to enable this:
zed ~/Library/Application\ Support/Claude/claude_desktop_config.json

# Add the following configuration:
{
  "mcpServers": {
    "record-to-apple-notes": {
      "command": "uv",
      "args": [
        "--directory",
        "/FULL_PATH_TO/record-to-markdown",
        "run",
        "server.py"
      ]
    }
  }
}