Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions README.ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Claude: [get_backlinks 실행]
배포 패키지 사용:

```bash
npx -y logseq-mcp
npx -y @dearcloud09/logseq-mcp
```

개발용 로컬 체크아웃 사용:
Expand All @@ -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"
Expand All @@ -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": "서울"
Expand All @@ -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": "서울"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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"
Expand All @@ -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"
}
Expand All @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "logseq-mcp",
"name": "@dearcloud09/logseq-mcp",
"version": "0.1.0",
"description": "MCP server for Logseq graph integration",
"type": "module",
Expand Down Expand Up @@ -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"
},
Expand Down
Loading