diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bda8a4a..5b6fbae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -125,7 +125,7 @@ jobs: { "tag_name": "$TAG_VERSION", "name": "$TAG_VERSION", - "body": "Release $TAG_VERSION\n\n## Changes\n\n*Add release notes here before publishing*\n\n## Installation\n\n1. Download main.js, manifest.json, and styles.css\n2. Create a folder in .obsidian/plugins/obsidian-mcp-server/\n3. Copy the three files into the folder\n4. Reload Obsidian\n5. Enable the plugin in Settings → Community Plugins", + "body": "Release $TAG_VERSION\n\n## Changes\n\n*Add release notes here before publishing*\n\n## Installation\n\n1. Download main.js, manifest.json, and styles.css\n2. Create a folder in .obsidian/plugins/mcp-server/\n3. Copy the three files into the folder\n4. Reload Obsidian\n5. Enable the plugin in Settings → Community Plugins", "draft": true, "prerelease": false } diff --git a/CLAUDE.md b/CLAUDE.md index 4a14cc0..16dcc86 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -27,7 +27,7 @@ The build command includes TypeScript type checking via `tsc -noEmit -skipLibChe ### Installing in Obsidian After building, the plugin outputs `main.js` to the root directory. To test in Obsidian: -1. Copy `main.js`, `manifest.json`, and `styles.css` to your vault's `.obsidian/plugins/obsidian-mcp-server/` directory +1. Copy `main.js`, `manifest.json`, and `styles.css` to your vault's `.obsidian/plugins/mcp-server/` directory 2. Reload Obsidian (Ctrl/Cmd + R in dev mode) 3. Enable the plugin in Settings → Community Plugins diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c9d444c..1337c6e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ -# Contributing to Obsidian MCP Server Plugin +# Contributing to MCP Server Plugin -Thank you for your interest in contributing to the Obsidian MCP Server Plugin! This document provides guidelines and information for contributors. +Thank you for your interest in contributing to the MCP Server Plugin! This document provides guidelines and information for contributors. ## Table of Contents @@ -64,12 +64,12 @@ For feature requests, please describe: **Linux/macOS:** ```bash - ln -s /path/to/your/dev/obsidian-mcp-server /path/to/vault/.obsidian/plugins/obsidian-mcp-server + ln -s /path/to/your/dev/obsidian-mcp-server /path/to/vault/.obsidian/plugins/mcp-server ``` **Windows (Command Prompt as Administrator):** ```cmd - mklink /D "C:\path\to\vault\.obsidian\plugins\obsidian-mcp-server" "C:\path\to\your\dev\obsidian-mcp-server" + mklink /D "C:\path\to\vault\.obsidian\plugins\mcp-server" "C:\path\to\your\dev\obsidian-mcp-server" ``` 4. **Start development build:** diff --git a/README.md b/README.md index 2dbf437..5e997ef 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Obsidian MCP Server Plugin +# MCP Server Plugin -An Obsidian plugin that makes your vault accessible via the [Model Context Protocol (MCP)](https://modelcontextprotocol.io) over HTTP. This allows AI assistants and other MCP clients to interact with your Obsidian vault programmatically. +A plugin that makes your vault accessible via the [Model Context Protocol (MCP)](https://modelcontextprotocol.io) over HTTP. This allows AI assistants and other MCP clients to interact with your vault programmatically. **Version:** 1.0.0 | **Tested with:** Obsidian v1.9.14 | **License:** MIT diff --git a/manifest.json b/manifest.json index 8c8820c..300bfb3 100644 --- a/manifest.json +++ b/manifest.json @@ -1,9 +1,9 @@ { - "id": "obsidian-mcp-server", + "id": "mcp-server", "name": "MCP Server", "version": "1.0.0", "minAppVersion": "0.15.0", - "description": "Exposes Obsidian vault operations via Model Context Protocol (MCP) over HTTP.", + "description": "Exposes vault operations via Model Context Protocol (MCP) over HTTP.", "author": "William Ballou", "isDesktopOnly": true, "fundingUrl": { diff --git a/package-lock.json b/package-lock.json index f91ff59..79c9bf4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "obsidian-mcp-server", + "name": "mcp-server", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "obsidian-mcp-server", + "name": "mcp-server", "version": "1.0.0", "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index f399a31..fa44318 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "obsidian-mcp-server", + "name": "mcp-server", "version": "1.0.0", - "description": "MCP (Model Context Protocol) server plugin for Obsidian - exposes vault operations via HTTP", + "description": "MCP (Model Context Protocol) server plugin - exposes vault operations via HTTP", "main": "main.js", "scripts": { "dev": "node esbuild.config.mjs",