readme config file location update

This commit is contained in:
2025-07-24 20:35:10 +03:00
parent 9a157b6d4a
commit e3d1738ae6

View File

@@ -37,12 +37,14 @@ npm install
npm run build npm run build
``` ```
4. Configure your Appwrite credentials: 4. Configure your Appwrite credentials by creating `appwrite-config.json` in your **current working directory** (where you run Claude Code from), not in the cloned repository:
```bash ```bash
cp appwrite-config.json.template appwrite-config.json # Copy the template to your current working directory
cp /path/to/app-write-mcp/appwrite-config.json.template ./appwrite-config.json
``` ```
5. Edit `appwrite-config.json` with your Appwrite project details: 5. Edit the `appwrite-config.json` file in your current directory with your Appwrite project details:
```json ```json
{ {
"projectId": "your-project-id", "projectId": "your-project-id",
@@ -51,6 +53,8 @@ cp appwrite-config.json.template appwrite-config.json
} }
``` ```
**Important:** The MCP server looks for `appwrite-config.json` in the directory where Claude Code is currently running, not in the repository directory. This allows you to use different configurations for different projects without modifying the repository.
## Adding to Claude Code ## Adding to Claude Code
1. Add the MCP server to Claude Code: 1. Add the MCP server to Claude Code: