├── .claude └── CLAUDE.md ├── .cursor └── rules │ ├── logseq.mdc │ └── modelcontextprotocol.mdc ├── .env.template ├── .gitignore ├── Dockerfile ├── README.md ├── docs ├── logseq-plugins.txt └── modelcontextprotocol-typescriptsdk-docs.md ├── index.ts ├── package.json ├── pnpm-lock.yaml └── smithery.yaml /.claude/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/.claude/CLAUDE.md -------------------------------------------------------------------------------- /.cursor/rules/logseq.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/.cursor/rules/logseq.mdc -------------------------------------------------------------------------------- /.cursor/rules/modelcontextprotocol.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/.cursor/rules/modelcontextprotocol.mdc -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/README.md -------------------------------------------------------------------------------- /docs/logseq-plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/docs/logseq-plugins.txt -------------------------------------------------------------------------------- /docs/modelcontextprotocol-typescriptsdk-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/docs/modelcontextprotocol-typescriptsdk-docs.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/logseq-mcp-tools/HEAD/smithery.yaml --------------------------------------------------------------------------------