docmind-mcp 0.3.0
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.
- package/.env.example +12 -0
- package/README.md +109 -0
- package/dist/cli.js +943 -0
- package/dist/index.js +24969 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "docmind-mcp",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Give your coding agent a document brain: point it at any folder, get instant search, budgeted LLM research, and persistent memory via MCP.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"bin": {
|
|
8
|
+
"docmind": "dist/cli.js",
|
|
9
|
+
"docmind-mcp": "dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md",
|
|
14
|
+
".env.example"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"build": "npm run typecheck && node build.mjs",
|
|
19
|
+
"prepublishOnly": "npm run build",
|
|
20
|
+
"start": "tsx src/index.ts",
|
|
21
|
+
"cli": "tsx src/cli.ts"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18.17"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"mcp",
|
|
28
|
+
"rag",
|
|
29
|
+
"local-search",
|
|
30
|
+
"agentic-search",
|
|
31
|
+
"knowledge-base",
|
|
32
|
+
"agent-memory",
|
|
33
|
+
"zvec-grep",
|
|
34
|
+
"sirchmunk",
|
|
35
|
+
"coding-agent"
|
|
36
|
+
],
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
39
|
+
"@types/js-yaml": "^4.0.9",
|
|
40
|
+
"@types/node": "^22.0.0",
|
|
41
|
+
"esbuild": "^0.24.2",
|
|
42
|
+
"js-yaml": "^4.3.2",
|
|
43
|
+
"tsx": "^4.19.0",
|
|
44
|
+
"typescript": "^5.6.0",
|
|
45
|
+
"zod": "^3.25.76"
|
|
46
|
+
}
|
|
47
|
+
}
|