mcp-obsidian-cli 1.3.2 → 1.3.3
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 +7 -1
- package/package.json +11 -5
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# mcp-obsidian-cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/mcp-obsidian-cli)
|
|
4
|
+
[](https://www.npmjs.com/package/mcp-obsidian-cli)
|
|
5
|
+
[](https://registry.modelcontextprotocol.io/v0/servers?search=stonematt%2Fmcp-obsidian-cli)
|
|
6
|
+
[](https://nodejs.org)
|
|
7
|
+
[](https://opensource.org/licenses/MIT)
|
|
4
8
|
|
|
5
9
|
MCP server that wraps the Obsidian CLI, giving AI assistants full access to Obsidian's native API — search index, wikilink resolution, tasks, properties, daily notes, backlinks, and 80+ commands — through the Model Context Protocol.
|
|
6
10
|
|
|
@@ -113,3 +117,5 @@ MIT
|
|
|
113
117
|
|
|
114
118
|
Maintained by [@stonematt](https://github.com/stonematt)
|
|
115
119
|
Licensed under the MIT License
|
|
120
|
+
|
|
121
|
+
**Trademark Notice:** "Obsidian" is a trademark of Obsidian Publishing, Inc. This project is not affiliated with or endorsed by Obsidian Publishing.
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-obsidian-cli",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"mcpName": "io.github.stonematt/mcp-obsidian-cli",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"description": "MCP server
|
|
6
|
+
"description": "Obsidian MCP server via the official CLI plugin — no REST, no API keys, 80+ native commands.",
|
|
7
7
|
"main": "server.js",
|
|
8
8
|
"bin": {
|
|
9
9
|
"mcp-obsidian-cli": "server.js"
|
|
@@ -22,15 +22,21 @@
|
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
24
|
"mcp",
|
|
25
|
-
"
|
|
25
|
+
"mcp-server",
|
|
26
26
|
"model-context-protocol",
|
|
27
|
-
"
|
|
27
|
+
"obsidian",
|
|
28
|
+
"obsidian-cli",
|
|
29
|
+
"obsidian-plugin",
|
|
28
30
|
"claude",
|
|
29
|
-
"
|
|
31
|
+
"claude-desktop",
|
|
32
|
+
"claude-code",
|
|
33
|
+
"ai-tools",
|
|
30
34
|
"knowledge-management"
|
|
31
35
|
],
|
|
32
36
|
"author": "stonematt",
|
|
33
37
|
"license": "MIT",
|
|
38
|
+
"homepage": "https://github.com/stonematt/mcp-obsidian-cli#readme",
|
|
39
|
+
"bugs": "https://github.com/stonematt/mcp-obsidian-cli/issues",
|
|
34
40
|
"repository": {
|
|
35
41
|
"type": "git",
|
|
36
42
|
"url": "git+https://github.com/stonematt/mcp-obsidian-cli.git"
|