From aeb9eaae98b6ab2915479ae5df528633839010c9 Mon Sep 17 00:00:00 2001 From: yokuze <1326722+yokuze@users.noreply.github.com> Date: Sun, 28 Jun 2026 13:10:51 +0000 Subject: [PATCH 1/2] docs: replace install-mcp with aix add mcp This change replaces all instances of the `install-mcp` command with `aix add mcp`. `aix` is a more robust tool for managing AI assistant configurations across multiple editors. Changes: - Replaced `[install-mcp](https://www.npmjs.com/package/install-mcp)` with `[aix](https://aix.a1st.dev/cli/add/#aix-add-mcp)` - Replaced `npx -y install-mcp @hypothesi/tauri-mcp-server --client ` with `npx -y @a1st/aix add mcp @hypothesi/tauri-mcp-server --user` - Consolidated redundant client-specific installation blocks in the root README.md into a single simplified section. - Updated documentation in: - README.md - docs/index.md - docs/guides/getting-started.md - packages/mcp-server/README.md --- README.md | 50 +++------------------------------- docs/guides/getting-started.md | 4 +-- docs/index.md | 4 +-- packages/mcp-server/README.md | 4 +-- 4 files changed, 10 insertions(+), 52 deletions(-) diff --git a/README.md b/README.md index 1b1a6ee..42a322a 100644 --- a/README.md +++ b/README.md @@ -43,58 +43,16 @@ A **Model Context Protocol (MCP) server** that enables AI assistants like Claude ### 1. Configure Your AI Assistant -Use [install-mcp](https://www.npmjs.com/package/install-mcp) to add the server to your AI assistant: +Use [aix](https://aix.a1st.dev/cli/add/#aix-add-mcp) to add the server to your AI assistant: ```bash -npx -y install-mcp @hypothesi/tauri-mcp-server --client claude-code +npx -y @a1st/aix add mcp @hypothesi/tauri-mcp-server --user ``` Supported clients: `claude-code`, `cursor`, `windsurf`, `vscode`, `cline`, `roo-cline`, `claude`, `zed`, `goose`, `warp`, `codex` -
-Claude Code - -```bash -npx -y install-mcp @hypothesi/tauri-mcp-server --client claude-code -``` - -
- -
-Cursor - -```bash -npx -y install-mcp @hypothesi/tauri-mcp-server --client cursor -``` - -
- -
-VS Code / Copilot - -```bash -npx -y install-mcp @hypothesi/tauri-mcp-server --client vscode -``` - -
- -
-Windsurf - -```bash -npx -y install-mcp @hypothesi/tauri-mcp-server --client windsurf -``` - -
- -
-Cline - -```bash -npx -y install-mcp @hypothesi/tauri-mcp-server --client cline -``` - -
+> [!TIP] +> `aix` automatically detects your installed AI assistants and configures them. **Restart your AI assistant** after adding the configuration. diff --git a/docs/guides/getting-started.md b/docs/guides/getting-started.md index a2493cb..d9a3abf 100644 --- a/docs/guides/getting-started.md +++ b/docs/guides/getting-started.md @@ -93,10 +93,10 @@ Before you begin, ensure you have: ## Step 1: Configure Your AI Assistant -First, add the MCP server to your AI assistant using [install-mcp](https://www.npmjs.com/package/install-mcp): +First, add the MCP server to your AI assistant using [aix](https://aix.a1st.dev/cli/add/#aix-add-mcp): ```bash -npx -y install-mcp @hypothesi/tauri-mcp-server --client claude-code +npx -y @a1st/aix add mcp @hypothesi/tauri-mcp-server --user ``` Supported clients: `claude-code`, `cursor`, `windsurf`, `vscode`, `cline`, `roo-cline`, `claude`, `zed`, `goose`, `warp`, `codex` diff --git a/docs/index.md b/docs/index.md index 8519bbb..a6509d4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -119,10 +119,10 @@ The npm package `@hypothesi/tauri-plugin-mcp-bridge` is **optional**. It provide ### 3. Configure Your AI Assistant -Use [install-mcp](https://www.npmjs.com/package/install-mcp) to add the server to your AI assistant: +Use [aix](https://aix.a1st.dev/cli/add/#aix-add-mcp) to add the server to your AI assistant: ```bash -npx -y install-mcp @hypothesi/tauri-mcp-server --client claude-code +npx -y @a1st/aix add mcp @hypothesi/tauri-mcp-server --user ``` Supported clients: `claude-code`, `cursor`, `windsurf`, `vscode`, `cline`, `roo-cline`, `claude`, `zed`, `goose`, `warp`, `codex` diff --git a/packages/mcp-server/README.md b/packages/mcp-server/README.md index f39980b..a6ec14f 100644 --- a/packages/mcp-server/README.md +++ b/packages/mcp-server/README.md @@ -44,10 +44,10 @@ fn main() { ### 2. Configure Your AI Assistant -Use [install-mcp](https://www.npmjs.com/package/install-mcp) to add the server to your AI assistant: +Use [aix](https://aix.a1st.dev/cli/add/#aix-add-mcp) to add the server to your AI assistant: ```bash -npx -y install-mcp @hypothesi/tauri-mcp-server --client claude-code +npx -y @a1st/aix add mcp @hypothesi/tauri-mcp-server --user ``` Supported clients: `claude-code`, `cursor`, `windsurf`, `vscode`, `cline`, `roo-cline`, `claude`, `zed`, `goose`, `warp`, `codex` From f76af8978824ef74a884d4c989e2fb5f7defa50b Mon Sep 17 00:00:00 2001 From: yokuze <1326722+yokuze@users.noreply.github.com> Date: Sun, 28 Jun 2026 17:55:44 +0000 Subject: [PATCH 2/2] docs: replace install-mcp with aix add mcp This change replaces all instances of the `install-mcp` command with the specific `aix add mcp` command provided. `aix` is a more robust tool for managing AI assistant configurations across multiple editors. Changes: - Replaced `[install-mcp](https://www.npmjs.com/package/install-mcp)` with `[aix](https://aix.a1st.dev/cli/add/#aix-add-mcp)` - Replaced `npx -y install-mcp @hypothesi/tauri-mcp-server --client ` with `npx -y @a1st/aix add mcp tauri --command 'npx @hypothesi/tauri-mcp-server' --user` - Consolidated redundant client-specific installation blocks in the root README.md into a single simplified section. - Updated documentation in: - README.md - docs/index.md - docs/guides/getting-started.md - packages/mcp-server/README.md --- README.md | 2 +- docs/guides/getting-started.md | 2 +- docs/index.md | 2 +- packages/mcp-server/README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 42a322a..8339d85 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ A **Model Context Protocol (MCP) server** that enables AI assistants like Claude Use [aix](https://aix.a1st.dev/cli/add/#aix-add-mcp) to add the server to your AI assistant: ```bash -npx -y @a1st/aix add mcp @hypothesi/tauri-mcp-server --user +npx -y @a1st/aix add mcp tauri --command 'npx @hypothesi/tauri-mcp-server' --user ``` Supported clients: `claude-code`, `cursor`, `windsurf`, `vscode`, `cline`, `roo-cline`, `claude`, `zed`, `goose`, `warp`, `codex` diff --git a/docs/guides/getting-started.md b/docs/guides/getting-started.md index d9a3abf..01dfc97 100644 --- a/docs/guides/getting-started.md +++ b/docs/guides/getting-started.md @@ -96,7 +96,7 @@ Before you begin, ensure you have: First, add the MCP server to your AI assistant using [aix](https://aix.a1st.dev/cli/add/#aix-add-mcp): ```bash -npx -y @a1st/aix add mcp @hypothesi/tauri-mcp-server --user +npx -y @a1st/aix add mcp tauri --command 'npx @hypothesi/tauri-mcp-server' --user ``` Supported clients: `claude-code`, `cursor`, `windsurf`, `vscode`, `cline`, `roo-cline`, `claude`, `zed`, `goose`, `warp`, `codex` diff --git a/docs/index.md b/docs/index.md index a6509d4..b0ba692 100644 --- a/docs/index.md +++ b/docs/index.md @@ -122,7 +122,7 @@ The npm package `@hypothesi/tauri-plugin-mcp-bridge` is **optional**. It provide Use [aix](https://aix.a1st.dev/cli/add/#aix-add-mcp) to add the server to your AI assistant: ```bash -npx -y @a1st/aix add mcp @hypothesi/tauri-mcp-server --user +npx -y @a1st/aix add mcp tauri --command 'npx @hypothesi/tauri-mcp-server' --user ``` Supported clients: `claude-code`, `cursor`, `windsurf`, `vscode`, `cline`, `roo-cline`, `claude`, `zed`, `goose`, `warp`, `codex` diff --git a/packages/mcp-server/README.md b/packages/mcp-server/README.md index a6ec14f..cbf33e4 100644 --- a/packages/mcp-server/README.md +++ b/packages/mcp-server/README.md @@ -47,7 +47,7 @@ fn main() { Use [aix](https://aix.a1st.dev/cli/add/#aix-add-mcp) to add the server to your AI assistant: ```bash -npx -y @a1st/aix add mcp @hypothesi/tauri-mcp-server --user +npx -y @a1st/aix add mcp tauri --command 'npx @hypothesi/tauri-mcp-server' --user ``` Supported clients: `claude-code`, `cursor`, `windsurf`, `vscode`, `cline`, `roo-cline`, `claude`, `zed`, `goose`, `warp`, `codex`