diff --git a/CHANGELOG.md b/CHANGELOG.md index 32fefa7..f55af74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 0.1.0 - 2026-06-06 - Add npm package metadata and CLI binary entrypoint. +- Use scoped npm package name `@dearcloud09/logseq-mcp` because the unscoped `logseq-mcp` name is already taken. - Add Node.js CI for build, tests, packaging, and production dependency audit. - Add GraphService regression tests for page operations, journals, search, and local file safety. - Add Codex, Claude Code, and Claude Desktop setup documentation. diff --git a/README.ko.md b/README.ko.md index 4eecea7..e44c2d8 100644 --- a/README.ko.md +++ b/README.ko.md @@ -85,7 +85,7 @@ Claude: [get_backlinks 실행] 배포 패키지 사용: ```bash -npx -y logseq-mcp +npx -y @dearcloud09/logseq-mcp ``` 개발용 로컬 체크아웃 사용: @@ -104,7 +104,7 @@ npm run build ```toml [mcp_servers.logseq] command = "npx" -args = ["-y", "logseq-mcp"] +args = ["-y", "@dearcloud09/logseq-mcp"] [mcp_servers.logseq.env] LOGSEQ_GRAPH_PATH = "/path/to/your/logseq/graph" @@ -122,7 +122,7 @@ Codex에서 `/mcp`를 실행해 `logseq` 서버가 연결되었는지 확인합 "mcpServers": { "logseq": { "command": "npx", - "args": ["-y", "logseq-mcp"], + "args": ["-y", "@dearcloud09/logseq-mcp"], "env": { "LOGSEQ_GRAPH_PATH": "/path/to/your/logseq/graph", "WEATHER_LOCATION": "서울" @@ -141,7 +141,7 @@ Codex에서 `/mcp`를 실행해 `logseq` 서버가 연결되었는지 확인합 "mcpServers": { "logseq": { "command": "npx", - "args": ["-y", "logseq-mcp"], + "args": ["-y", "@dearcloud09/logseq-mcp"], "env": { "LOGSEQ_GRAPH_PATH": "/path/to/your/logseq/graph", "WEATHER_LOCATION": "서울" diff --git a/README.md b/README.md index 2d76f5a..dee22df 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Claude: [writes directly to Logseq via logseq-mcp] Use the published package: ```bash -npx -y logseq-mcp +npx -y @dearcloud09/logseq-mcp ``` Or install from a local checkout for development: @@ -87,7 +87,7 @@ Add the MCP server to `~/.codex/config.toml`: ```toml [mcp_servers.logseq] command = "npx" -args = ["-y", "logseq-mcp"] +args = ["-y", "@dearcloud09/logseq-mcp"] [mcp_servers.logseq.env] LOGSEQ_GRAPH_PATH = "/path/to/your/logseq/graph" @@ -104,7 +104,7 @@ Then open Codex and run `/mcp` to confirm the `logseq` server is connected. "mcpServers": { "logseq": { "command": "npx", - "args": ["-y", "logseq-mcp"], + "args": ["-y", "@dearcloud09/logseq-mcp"], "env": { "LOGSEQ_GRAPH_PATH": "/path/to/your/logseq/graph" } @@ -120,7 +120,7 @@ Then open Codex and run `/mcp` to confirm the `logseq` server is connected. "mcpServers": { "logseq": { "command": "npx", - "args": ["-y", "logseq-mcp"], + "args": ["-y", "@dearcloud09/logseq-mcp"], "env": { "LOGSEQ_GRAPH_PATH": "/path/to/your/logseq/graph" } diff --git a/package-lock.json b/package-lock.json index fb69aff..ca7f313 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "logseq-mcp", + "name": "@dearcloud09/logseq-mcp", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "logseq-mcp", + "name": "@dearcloud09/logseq-mcp", "version": "0.1.0", "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 7af0384..566e734 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "logseq-mcp", + "name": "@dearcloud09/logseq-mcp", "version": "0.1.0", "description": "MCP server for Logseq graph integration", "type": "module", @@ -42,6 +42,9 @@ "url": "https://github.com/dearcloud09/logseq-mcp/issues" }, "homepage": "https://github.com/dearcloud09/logseq-mcp#readme", + "publishConfig": { + "access": "public" + }, "engines": { "node": ">=20" },