mindwtr-mcp 0.9.10

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 +484 -0
  2. package/dist/index.js +91163 -0
  3. package/package.json +54 -0
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "mindwtr-mcp",
3
+ "description": "Local stdio MCP server for Mindwtr task and project automation.",
4
+ "version": "0.9.10",
5
+ "license": "AGPL-3.0-only",
6
+ "type": "module",
7
+ "mcpName": "io.github.dongdongbh/mindwtr",
8
+ "main": "dist/index.js",
9
+ "bin": {
10
+ "mindwtr-mcp": "dist/index.js"
11
+ },
12
+ "files": [
13
+ "dist/index.js",
14
+ "README.md"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/dongdongbh/Mindwtr.git",
22
+ "directory": "apps/mcp-server"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/dongdongbh/Mindwtr/issues"
26
+ },
27
+ "homepage": "https://github.com/dongdongbh/Mindwtr/wiki/MCP-Server",
28
+ "keywords": [
29
+ "mcp",
30
+ "model-context-protocol",
31
+ "mindwtr",
32
+ "gtd",
33
+ "tasks"
34
+ ],
35
+ "engines": {
36
+ "node": ">=18"
37
+ },
38
+ "scripts": {
39
+ "dev": "bun src/index.ts",
40
+ "build": "bun build src/index.ts --target node --format esm --outfile dist/index.js --external=better-sqlite3 --external=bun:sqlite",
41
+ "lint": "eslint -c ../../eslint.node.config.mjs . --max-warnings 0",
42
+ "typecheck": "tsc --noEmit",
43
+ "start": "node dist/index.js",
44
+ "test": "bun test",
45
+ "test:coverage": "bun test --coverage --coverage-reporter=lcov"
46
+ },
47
+ "dependencies": {
48
+ "better-sqlite3": "9.6.0"
49
+ },
50
+ "devDependencies": {
51
+ "@modelcontextprotocol/sdk": "^1.29.0",
52
+ "zod": "^3.24.1"
53
+ }
54
+ }