https://github.com/29decibel/record-to-markdown
a MCP server to record Claude conversation to markdown or Apple Notes
https://github.com/29decibel/record-to-markdown
Last synced: 3 months ago
JSON representation
a MCP server to record Claude conversation to markdown or Apple Notes
- Host: GitHub
- URL: https://github.com/29decibel/record-to-markdown
- Owner: 29decibel
- Created: 2025-01-20T19:12:42.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-01-20T19:15:03.000Z (9 months ago)
- Last Synced: 2025-01-20T20:25:04.098Z (9 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Record conversation to markdown / Apple Notes
Record Claude conversation to markdown or Apple notes.
## Usage
```bash
# clone this repo
git clone https://github.com/29decibel/record-to-markdown
```Edit the Claude desktop config to enable this:
```bash
zed ~/Library/Application\ Support/Claude/claude_desktop_config.json
``````json
{
"mcpServers": {
"record-to-apple-notes": {
"command": "uv",
"args": [
"--directory",
"/FULL_PATH_TO/record-to-markdown",
"run",
"server.py"
]
}
}
}
```