Cheng298 downloadsCopy notes as portable Markdown and bridge with Bear, WPS Cloud Note, and Youdao Note.
An Obsidian plugin that exports notes as portable Markdown and bridges your vault with Bear, WPS Cloud Note, Youdao Note, Flomo, Yinxiang (印象笔记), WeKnora, and IMA (Tencent). Each integration is an independently enabled, independently configured first-class client.
Desktop only (
isDesktopOnly: true) — several providers drive CLI subprocesses.

These integrations share the same pipeline — selection → Markdown transforms → provider dispatch — and most people who care about Markdown portability use more than one of these apps. Bundling them avoids duplicating the transform layer and keeps the right-click menu unified. Each provider can be enabled, configured, and trusted independently in settings, so you only ever see what you've set up.
The plugin is intentionally scoped to first-class clients for a curated set of apps, rather than a generic "add any MCP server" surface. New providers land as first-class clients over time.
Transform Obsidian-specific syntax into portable Markdown that works anywhere:
| Option | Description | Default |
|---|---|---|
Resolve [[wikilinks]] |
Convert wikilinks to standard Markdown links | On |
| Embed handling | What to do with ![[embeds]] |
Replace with link |
| Flatten callouts | Convert > [!note] callouts to blockquotes |
On |
| Drop frontmatter | Remove YAML frontmatter from output | Off |
| Rewrite attachments | How to handle image/attachment paths | Vault-relative |
Each provider below can be enabled and configured independently in Settings → Community plugins → Notes Bridge.
bear:// x-callback-url scheme (local IPC, no network).youdaonote CLI, which calls Youdao's API with your API key.IMA, Yinxiang, WeKnora, and Youdao share one FuzzySuggestModal picker for choosing a target notebook, folder, or knowledge base — no more pasting raw IDs. Click Choose… to load the list from the server or CLI, pick a target, and the plugin stores both its ID and display name. Use Clear to go back to the default location.
Right-click any file in the file explorer (or select multiple files) to find the Notes Bridge submenu with all available actions. Only providers that are enabled and fully configured appear.
| Command | Description |
|---|---|
| Copy as pure Markdown | Transform and copy the active note to clipboard |
| Export current note as pure Markdown | Export the active note to folder |
| Send active note to Bear | Dispatch the active note to Bear |
| Import from Bear | Import a Bear note via UUID or URL |
| Send active note to WPS Cloud Note | Dispatch the active note to a configured WPS provider |
| Send active note to Youdao Note | Dispatch the active note to a configured Youdao provider |
| Send active note to Flomo | Dispatch the active note as a memo to a configured Flomo provider |
| Send active note to Yinxiang | Dispatch the active note to a configured Yinxiang provider |
| Send active note to WeKnora | Dispatch the active note to a configured WeKnora provider |
| Send active note to IMA | Dispatch the active note to a configured IMA provider |
Configure via Settings → Community plugins → Notes Bridge.
Exports).Imports).The plugin isn't in the official community catalogue yet. The easiest way to install and stay up to date is through BRAT (Beta Reviewers Auto-update Tool):
huangcheng/obsidian-notes-bridge.See the BRAT plugin docs for details on auto-updates and pinning to a specific version.
main.js, manifest.json, and styles.css from the latest release.<vault>/.obsidian/plugins/advanced-import-export/.git clone https://github.com/huangcheng/obsidian-notes-bridge.git
cd obsidian-notes-bridge
npm install
npm run build
Copy the output files (main.js, manifest.json, styles.css) into your vault's plugin directory.
.obsidian/plugins/advanced-import-export/data.json) and never leave your machine, except for the explicit calls you trigger to a configured provider.| Provider | Direction | Where data goes |
|---|---|---|
| Bear | Export + import | bear:// URL scheme — local IPC, no network |
| WPS Cloud Note | Export | The server URL or CLI binary you configure |
| Youdao Note | Export + import | Local youdaonote CLI → Youdao API (mopen.163.com) using your API key |
| Flomo | Export (push-only) | https://flomoapp.com/mcp with Authorization: Bearer <token> |
| Yinxiang (印象笔记) | Export + import | https://app.yinxiang.com with auth: <token> |
| WeKnora | Export (push-only) | Your configured base URL with an X-API-Key header |
| IMA (Tencent) | Export (push-only) | https://ima.qq.com with ima-openapi-clientid + ima-openapi-apikey headers |
To be transparent about the warnings some reviewers surface:
youdaonote), Bear (bearcli), and WPS when configured for the CLI transport. It only ever runs the binaries you configure.@modelcontextprotocol/sdk, used for the Flomo and WPS MCP transports) depends on Ajv, which compiles JSON Schemas into validator functions using new Function(...). This compiles trusted, schema-defined code — not remote or user-supplied scripts — and is inherent to JSON-Schema validation; it cannot be removed without dropping MCP support. The plugin never fetches or executes remote code.npm install # install dependencies
npm run dev # watch mode — auto-rebuild on changes
npm run build # type-check + production build
npm run lint # run ESLint
npm run test # run the test suite
See CONTRIBUTING.md for the project layout and how to add a provider.
Contributions are welcome! Please read CONTRIBUTING.md and follow our Code of Conduct.
See CHANGELOG.md.
Licensed under the 0-BSD License.