@manex/obsidianmcp 0.1.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/README.md +98 -0
- package/dist/server.js +28944 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@manex/obsidianmcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A Model Context Protocol server for secure integration with Obsidian vaults",
|
|
5
|
+
"author": "Manex142",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"private": false,
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/Manex142/ObsidianMCP.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/Manex142/ObsidianMCP/issues"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/Manex142/ObsidianMCP#readme",
|
|
17
|
+
"keywords": [
|
|
18
|
+
"mcp",
|
|
19
|
+
"obsidian",
|
|
20
|
+
"model-context-protocol",
|
|
21
|
+
"ai"
|
|
22
|
+
],
|
|
23
|
+
"main": "dist/server.js",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "bun run src/server.ts",
|
|
26
|
+
"build": "bun build src/server.ts --outdir dist --target node",
|
|
27
|
+
"start": "node dist/server.js",
|
|
28
|
+
"test": "bun test",
|
|
29
|
+
"test:watch": "bun test --watch",
|
|
30
|
+
"test:coverage": "bun test --coverage",
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"format": "prettier --write .",
|
|
33
|
+
"format:check": "prettier --check .",
|
|
34
|
+
"inspector": "npx @modelcontextprotocol/inspector node dist/server.js",
|
|
35
|
+
"prepublishOnly": "bun run build && bun run test && bun run typecheck"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist",
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE"
|
|
41
|
+
],
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/bun": "latest",
|
|
44
|
+
"prettier": "^3.7.4"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"typescript": "^5"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
51
|
+
"zod": "^4.3.5"
|
|
52
|
+
}
|
|
53
|
+
}
|