obsidian-native-mcp 0.2.0 → 1.0.1
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/.github/workflows/ci.yml +7 -2
- package/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/dist/plugin/manifest.json +1 -1
- package/manifest.json +1 -1
- package/package.json +5 -1
package/.github/workflows/ci.yml
CHANGED
|
@@ -51,6 +51,7 @@ jobs:
|
|
|
51
51
|
contents: write
|
|
52
52
|
issues: write
|
|
53
53
|
pull-requests: write
|
|
54
|
+
id-token: write
|
|
54
55
|
steps:
|
|
55
56
|
- uses: actions/checkout@v4
|
|
56
57
|
with:
|
|
@@ -61,9 +62,13 @@ jobs:
|
|
|
61
62
|
node-version: "22"
|
|
62
63
|
cache: npm
|
|
63
64
|
- run: npm ci
|
|
65
|
+
- name: Install npm with OIDC support
|
|
66
|
+
run: npm install --no-save npm@11.5.1
|
|
64
67
|
- run: npm run build
|
|
65
68
|
- name: Semantic Release
|
|
66
69
|
env:
|
|
67
70
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
68
|
-
|
|
69
|
-
|
|
71
|
+
run: |
|
|
72
|
+
export PATH="$PWD/node_modules/.bin:$PATH"
|
|
73
|
+
npm --version
|
|
74
|
+
npx semantic-release
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
## [1.0.1](https://github.com/usrivastava92/obsidian-native-mcp/compare/v1.0.0...v1.0.1) (2026-05-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* stabilize npm OIDC release workflow ([0059af2](https://github.com/usrivastava92/obsidian-native-mcp/commit/0059af264e295897beb88f9c8a1549f8601f0559))
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Direct filesystem access — no Obsidian process, no REST API plugin required.
|
|
|
9
9
|
[](https://github.com/usrivastava92/obsidian-native-mcp/releases)
|
|
10
10
|
[](https://www.npmjs.com/package/obsidian-native-mcp)
|
|
11
11
|
[](https://www.npmjs.com/package/obsidian-native-mcp)
|
|
12
|
-
[](LICENSE)
|
|
13
13
|
[](CONTRIBUTING.md)
|
|
14
14
|
|
|
15
15
|
</div>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "obsidian-native-mcp",
|
|
3
3
|
"name": "Obsidian Native MCP",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"minAppVersion": "1.5.0",
|
|
6
6
|
"description": "MCP server for AI assistants to read, search, create, and modify notes in your vaults",
|
|
7
7
|
"author": "Utkarsh Srivastava",
|
package/manifest.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "obsidian-native-mcp",
|
|
3
3
|
"name": "Obsidian Native MCP",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"minAppVersion": "1.5.0",
|
|
6
6
|
"description": "MCP server for AI assistants to read, search, create, and modify notes in your vaults",
|
|
7
7
|
"author": "Utkarsh Srivastava",
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obsidian-native-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Zero-dependency MCP server for Obsidian vaults. Direct filesystem access — no Obsidian process or REST API plugin needed.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/usrivastava92/obsidian-native-mcp.git"
|
|
9
|
+
},
|
|
6
10
|
"bin": {
|
|
7
11
|
"obsidian-native-mcp": "dist/cli/index.js"
|
|
8
12
|
},
|