logseq-mcp 0.0.2

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.
Files changed (3) hide show
  1. package/README.md +221 -0
  2. package/dist/index.js +8112 -0
  3. package/package.json +42 -0
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "logseq-mcp",
3
+ "version": "0.0.2",
4
+ "description": "Logseq Model Context Protocol Agent",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "scripts": {
8
+ "start": "bun run src/index.ts",
9
+ "test": "bun test tests/",
10
+ "build:macos-arm": "bun build --compile --target=bun-darwin-arm64 src/index.ts --outfile logseq-mcp",
11
+ "build:macos-intel": "bun build --compile --target=bun-darwin-x64 src/index.ts --outfile logseq-mcp-intel",
12
+ "build": "bun build src/index.ts --outdir dist --target node",
13
+ "prepublishOnly": "bun run build"
14
+ },
15
+ "dependencies": {
16
+ "@modelcontextprotocol/sdk": "latest",
17
+ "dotenv": "^16.3.1",
18
+ "zod": "^3.22.4"
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md"
23
+ ],
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "author": "",
28
+ "license": "MIT",
29
+ "keywords": [
30
+ "logseq",
31
+ "agent",
32
+ "model-context-protocol"
33
+ ],
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/briansunter/logseq-mcp.git"
37
+ },
38
+ "bugs": {
39
+ "url": "https://github.com/briansunter/logseq-mcp/issues"
40
+ },
41
+ "homepage": "https://github.com/briansunter/logseq-mcp#readme"
42
+ }