Record conversation to markdown / Apple Notes
a MCP server to record Claude conversation to markdown or Apple Notes
Overview
Record to Markdown is a tool that allows users to record conversations from Claude and save them in markdown format or directly to Apple Notes.
To use Record to Markdown, clone the repository from GitHub and configure the Claude desktop settings to enable the recording feature.
- Records conversations from Claude to markdown format. - Directly saves conversations to Apple Notes. - Easy setup and configuration through a simple command line interface.
- Documenting important conversations for future reference.
- Creating notes from discussions for study or work purposes.
- Archiving conversations in a structured format for easy access.
Add to your AI client
Use these steps to connect Record conversation to markdown / Apple Notes in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"record-to-markdown-29decibel": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-record-to-markdown-29decibel"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"record-to-markdown-29decibel": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-record-to-markdown-29decibel"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"record-to-markdown-29decibel": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-record-to-markdown-29decibel"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"record-to-markdown-29decibel": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-record-to-markdown-29decibel"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"record-to-markdown-29decibel": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-record-to-markdown-29decibel"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"record-to-markdown-29decibel": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-record-to-markdown-29decibel"
]
}
}
}FAQ
Can I use Record to Markdown with any conversation?
Yes! It is designed to work with Claude conversations.
Is there a graphical user interface for this tool?
No, it currently operates through command line interface only.
Is it free to use?
Yes! Record to Markdown is open-source and free for everyone.