diff --git a/README.md b/README.md
index 4e1725e..1d1f3b7 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ through your browser. The first time you connect, your client opens an Appwrite
consent screen; approve the scopes and you're connected. There are no keys to
copy.
-
+
## Connect your client
@@ -24,28 +24,38 @@ Pick your client below. Each adds the hosted Appwrite Cloud server.
claude mcp add --transport http appwrite https://mcp.appwrite.io/mcp
```
+Then, inside a Claude Code session, run `/mcp`, select **appwrite**, and follow
+the browser prompt to authenticate.
+
Claude Desktop
Go to **Settings → Connectors → Add custom connector** and paste
-`https://mcp.appwrite.io/mcp`.
+`https://mcp.appwrite.io/mcp`. Available on Pro and Max plans; on Team and
+Enterprise plans only an organization Owner can add custom connectors.
-On the free plan, bridge the remote server through stdio instead (requires
-Node.js) by editing your config via **Settings → Developer → Edit Config**:
+If you don't see that option (free plan, or a Team/Enterprise member), bridge
+the remote server through stdio instead (requires Node.js). Go to **Settings → Developer → Local MCP servers**, click
+**Edit Config**, and add:
```json
{
"mcpServers": {
"appwrite": {
"command": "npx",
- "args": ["mcp-remote", "https://mcp.appwrite.io/mcp"]
+ "args": ["-y", "mcp-remote", "https://mcp.appwrite.io/mcp"]
}
}
}
```
+Restart Claude Desktop; the server appears under **Local MCP servers** and a
+browser window opens to authenticate.
+
+
+
@@ -63,6 +73,11 @@ Edit `~/.cursor/mcp.json` (global) or `.cursor/mcp.json` (project).
}
```
+Cursor prompts you to log in through the browser; the server then shows up
+under **Settings → MCP** with its tools enabled.
+
+
+
@@ -94,6 +109,18 @@ Edit `~/.codex/config.toml`.
url = "https://mcp.appwrite.io/mcp"
```
+Then authenticate from the terminal:
+
+```bash
+codex mcp login appwrite
+```
+
+In the Codex GUI, you can instead add the server from the MCP settings —
+set the URL to `https://mcp.appwrite.io/mcp` and leave the token and header
+fields empty (authentication happens through the browser):
+
+
+
@@ -133,6 +160,129 @@ Edit `~/.codeium/windsurf/mcp_config.json`.
+
+Gemini CLI
+
+```bash
+gemini mcp add --transport http appwrite https://mcp.appwrite.io/mcp
+```
+
+Or edit `~/.gemini/settings.json` (note the key is `httpUrl`, not `url`):
+
+```json
+{
+ "mcpServers": {
+ "appwrite": {
+ "httpUrl": "https://mcp.appwrite.io/mcp"
+ }
+ }
+}
+```
+
+Gemini CLI opens the browser OAuth flow automatically on first connect. To
+re-authenticate, run `/mcp auth appwrite` inside a session.
+
+
+
+
+GitHub Copilot CLI
+
+```bash
+copilot mcp add --transport http appwrite https://mcp.appwrite.io/mcp
+```
+
+Or run `/mcp add` inside a session, or edit `~/.copilot/mcp-config.json`:
+
+```json
+{
+ "mcpServers": {
+ "appwrite": {
+ "type": "http",
+ "url": "https://mcp.appwrite.io/mcp"
+ }
+ }
+}
+```
+
+A browser window opens to authenticate on first connect. Check status with
+`/mcp`.
+
+
+
+
+Zed
+
+Go to **Settings → AI → MCP Servers → Add Server → Add Remote Server**, or add
+to your `settings.json` (`zed: open settings`):
+
+```json
+{
+ "context_servers": {
+ "appwrite": {
+ "url": "https://mcp.appwrite.io/mcp"
+ }
+ }
+}
+```
+
+Zed prompts you to authenticate through the browser on first connect.
+
+
+
+
+Warp
+
+Go to **Settings → Agents → MCP servers → + Add**, choose the URL-based
+server type, and enter `https://mcp.appwrite.io/mcp`.
+
+Warp opens a browser window to authenticate on first connect.
+
+
+
+
+JetBrains AI Assistant / Junie
+
+JetBrains IDEs don't yet support OAuth for remote MCP servers, so bridge
+through stdio (requires Node.js). Go to **Settings → Tools → AI Assistant →
+Model Context Protocol (MCP) → Add**, switch to the JSON view, and paste:
+
+```json
+{
+ "mcpServers": {
+ "appwrite": {
+ "command": "npx",
+ "args": ["-y", "mcp-remote", "https://mcp.appwrite.io/mcp"]
+ }
+ }
+}
+```
+
+A browser window opens to authenticate on first connect.
+
+
+
+
+Cline
+
+Cline doesn't yet support OAuth for remote MCP servers, so bridge through
+stdio (requires Node.js). In the Cline panel, open the **MCP Servers** icon →
+**Configure** tab → **Configure MCP Servers**, and add:
+
+```json
+{
+ "mcpServers": {
+ "appwrite": {
+ "command": "npx",
+ "args": ["-y", "mcp-remote", "https://mcp.appwrite.io/mcp"]
+ }
+ }
+}
+```
+
+A browser window opens to authenticate on first connect.
+
+
+
## Self-hosted Appwrite
Running your own Appwrite instance? Run the MCP server locally over `stdio` and
diff --git a/docs/appwrite-mcp-flow.png b/docs/appwrite-mcp-flow.png
index 61f5cc1..83466ac 100644
Binary files a/docs/appwrite-mcp-flow.png and b/docs/appwrite-mcp-flow.png differ
diff --git a/docs/images/claude-desktop-local-mcp-servers.png b/docs/images/claude-desktop-local-mcp-servers.png
new file mode 100644
index 0000000..429cfba
Binary files /dev/null and b/docs/images/claude-desktop-local-mcp-servers.png differ
diff --git a/docs/images/codex-mcp.png b/docs/images/codex-mcp.png
new file mode 100644
index 0000000..9359851
Binary files /dev/null and b/docs/images/codex-mcp.png differ
diff --git a/docs/images/cursor-mcp.png b/docs/images/cursor-mcp.png
new file mode 100644
index 0000000..a12f781
Binary files /dev/null and b/docs/images/cursor-mcp.png differ