https://github.com/al-how/supernotes-to-obsidian
A Python script to import Supernotes exports into Obsidian daily notes using MCP
https://github.com/al-how/supernotes-to-obsidian
Last synced: 4 months ago
JSON representation
A Python script to import Supernotes exports into Obsidian daily notes using MCP
- Host: GitHub
- URL: https://github.com/al-how/supernotes-to-obsidian
- Owner: al-how
- Created: 2024-12-28T21:16:07.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-28T22:00:41.000Z (10 months ago)
- Last Synced: 2025-02-25T02:40:28.998Z (8 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Supernotes to Obsidian
A Python script to import Supernotes exports into Obsidian daily notes using the Model Context Protocol (MCP).
## Setup
1. Install dependencies:
```bash
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv add mcp
```2. Configure the settings in `config.py`:
```python
TEMPLATE_PATH = '/path/to/your/template.md'
EXPORT_FOLDER = '/path/to/supernote/exports'
DAILY_NOTES_FOLDER = 'Daily Notes'
```3. Run the script:
```bash
python src/main.py
```## Features
- Imports Supernotes exports into Obsidian daily notes
- Creates daily notes from template if they don't exist
- Cleans up note formatting
- Adds wikilinks for proper nouns
- Handles OCR errors## Configuration
See `config.py` for all available settings.