package.jsonā¢1.22 kB
{
"name": "obsidian-mcp-server",
"version": "1.0.0",
"description": "MCP server for Obsidian with local/remote vault support and advanced knowledge features",
"type": "module",
"main": "dist/index.js",
"bin": {
"obsidian-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts"
},
"keywords": [
"mcp",
"obsidian",
"knowledge-graph",
"notes",
"vault"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "1.20.1",
"zod": "4.1.12",
"gray-matter": "4.0.3",
"chokidar": "4.0.3",
"glob": "11.0.3",
"axios": "1.12.2",
"ws": "8.18.3"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "24.8.0",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "8.46.1",
"@typescript-eslint/parser": "8.46.1",
"eslint": "9.37.0",
"jest": "30.2.0",
"ts-jest": "29.4.5",
"typescript": "5.9.3"
},
"engines": {
"node": ">=18.0.0"
}
}