{ "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" } }