Compare commits
3 Commits
1.0.0-alph
...
1.0.0-alph
| Author | SHA1 | Date | |
|---|---|---|---|
| b52d2597f8 | |||
| 5b00626258 | |||
| 79c4af55d5 |
28
.github/workflows/release.yml
vendored
28
.github/workflows/release.yml
vendored
@@ -75,7 +75,8 @@ jobs:
|
|||||||
echo "File sizes:"
|
echo "File sizes:"
|
||||||
ls -lh main.js manifest.json styles.css
|
ls -lh main.js manifest.json styles.css
|
||||||
|
|
||||||
- name: Create draft release
|
- name: Create draft release (GitHub)
|
||||||
|
if: github.server_url == 'https://github.com'
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
@@ -106,3 +107,28 @@ jobs:
|
|||||||
|
|
||||||
echo "✅ Draft release created: $TAG_VERSION"
|
echo "✅ Draft release created: $TAG_VERSION"
|
||||||
echo "Visit https://github.com/${{ github.repository }}/releases to review and publish"
|
echo "Visit https://github.com/${{ github.repository }}/releases to review and publish"
|
||||||
|
|
||||||
|
- name: Create draft release (Gitea)
|
||||||
|
if: github.server_url != 'https://github.com'
|
||||||
|
uses: https://gitea.com/actions/gitea-release-action@main
|
||||||
|
with:
|
||||||
|
files: |
|
||||||
|
main.js
|
||||||
|
manifest.json
|
||||||
|
styles.css
|
||||||
|
draft: true
|
||||||
|
title: ${{ github.ref_name }}
|
||||||
|
body: |
|
||||||
|
Release ${{ github.ref_name }}
|
||||||
|
|
||||||
|
## Changes
|
||||||
|
|
||||||
|
*Add release notes here before publishing*
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
1. Download main.js, manifest.json, and styles.css
|
||||||
|
2. Create a folder in .obsidian/plugins/obsidian-mcp-server/
|
||||||
|
3. Copy the three files into the folder
|
||||||
|
4. Reload Obsidian
|
||||||
|
5. Enable the plugin in Settings → Community Plugins
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "obsidian-mcp-server",
|
"id": "obsidian-mcp-server",
|
||||||
"name": "MCP Server",
|
"name": "MCP Server",
|
||||||
"version": "1.0.0-alpha.2",
|
"version": "1.0.0-alpha.4",
|
||||||
"minAppVersion": "0.15.0",
|
"minAppVersion": "0.15.0",
|
||||||
"description": "Exposes Obsidian vault operations via Model Context Protocol (MCP) over HTTP.",
|
"description": "Exposes Obsidian vault operations via Model Context Protocol (MCP) over HTTP.",
|
||||||
"author": "William Ballou",
|
"author": "William Ballou",
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-mcp-server",
|
"name": "obsidian-mcp-server",
|
||||||
"version": "1.0.0-alpha.2",
|
"version": "1.0.0-alpha.4",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "obsidian-mcp-server",
|
"name": "obsidian-mcp-server",
|
||||||
"version": "1.0.0-alpha.2",
|
"version": "1.0.0-alpha.4",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-mcp-server",
|
"name": "obsidian-mcp-server",
|
||||||
"version": "1.0.0-alpha.2",
|
"version": "1.0.0-alpha.4",
|
||||||
"description": "MCP (Model Context Protocol) server plugin for Obsidian - exposes vault operations via HTTP",
|
"description": "MCP (Model Context Protocol) server plugin for Obsidian - exposes vault operations via HTTP",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user