-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "smart-connections-mcp",
"version": "2.0.1",
"mcpName": "io.github.msdanyg/smart-connections-mcp",
"description": "MCP server for true local semantic search over Obsidian vaults using Smart Connections embeddings — multi-vault, block-level retrieval, no cloud calls",
"type": "module",
"main": "dist/index.js",
"bin": {
"smart-connections-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": { "node": ">=20" },
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"test": "npm run build && vitest run",
"test:live": "LIVE_TESTS=1 vitest run",
"smoke": "node scripts/smoke.mjs",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"obsidian",
"smart-connections",
"semantic-search",
"embeddings",
"knowledge-graph",
"vector-search",
"rag",
"claude",
"anthropic",
"pkm"
],
"author": "Daniel Glickman",
"license": "MIT",
"homepage": "https://github.com/msdanyg/smart-connections-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/msdanyg/smart-connections-mcp.git"
},
"bugs": {
"url": "https://github.com/msdanyg/smart-connections-mcp/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@huggingface/transformers": "^4.2.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
}
}