@tk_wfl/o2n-mcp-server 0.2.3 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# @tk_wfl/o2n-mcp-server
|
|
2
|
+
|
|
3
|
+
Stdio MCP server for **o2n** — migrates an Obsidian vault into a Notion workspace from a
|
|
4
|
+
conversation in Claude Desktop / Claude Code, while preserving folder structure, wikilinks,
|
|
5
|
+
frontmatter, and attachments.
|
|
6
|
+
|
|
7
|
+
- Repository / full docs: https://github.com/TK-WFL/o2n
|
|
8
|
+
- License: MIT
|
|
9
|
+
|
|
10
|
+
## Setup
|
|
11
|
+
|
|
12
|
+
Register `@tk_wfl/o2n-mcp-server` as a stdio MCP server:
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
npx -y @tk_wfl/o2n-mcp-server
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Requires Node.js 20+, and `NOTION_TOKEN` (or a stored `o2n login` credential) in the
|
|
19
|
+
environment the MCP server runs in.
|
|
20
|
+
|
|
21
|
+
MCP access requires `O2N_ALLOWED_VAULTS=/absolute/path/to/vault` (comma-separated for multiple
|
|
22
|
+
vaults). Real writes are disabled by default; set `O2N_ENABLE_MCP_WRITE=1` and
|
|
23
|
+
`O2N_MCP_WRITE_TOKEN`, review `prepare_migration`, then pass the confirmation token to
|
|
24
|
+
`commit_migration`.
|
|
25
|
+
|
|
26
|
+
## Tools
|
|
27
|
+
|
|
28
|
+
`scan_vault` / `get_plan` / `update_plan` / `prepare_migration` / `commit_migration` /
|
|
29
|
+
`migration_status` / `get_report`
|
|
30
|
+
|
|
31
|
+
See the [main README](https://github.com/TK-WFL/o2n#readme) for the full setup guide and
|
|
32
|
+
security model.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tk_wfl/o2n-mcp-server",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "o2n(Obsidian→Notion移行ツール)のローカルMCPサーバー",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@tk_wfl/o2n-core": "^0.2.
|
|
40
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
39
|
+
"@tk_wfl/o2n-core": "^0.2.7",
|
|
40
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
41
41
|
"zod": "^4.4.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|