mcp-server-appwrite 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mcp_server_appwrite/server.py +1 -0
- {mcp_server_appwrite-0.2.0.dist-info → mcp_server_appwrite-0.2.1.dist-info}/METADATA +37 -6
- {mcp_server_appwrite-0.2.0.dist-info → mcp_server_appwrite-0.2.1.dist-info}/RECORD +6 -6
- {mcp_server_appwrite-0.2.0.dist-info → mcp_server_appwrite-0.2.1.dist-info}/WHEEL +0 -0
- {mcp_server_appwrite-0.2.0.dist-info → mcp_server_appwrite-0.2.1.dist-info}/entry_points.txt +0 -0
- {mcp_server_appwrite-0.2.0.dist-info → mcp_server_appwrite-0.2.1.dist-info}/licenses/LICENSE +0 -0
mcp_server_appwrite/server.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-server-appwrite
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: MCP (Model Context Protocol) server for Appwrite
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Requires-Python: >=3.12
|
|
7
|
-
Requires-Dist: appwrite>=11.
|
|
7
|
+
Requires-Dist: appwrite>=11.1.0
|
|
8
8
|
Requires-Dist: docstring-parser>=0.16
|
|
9
9
|
Requires-Dist: mcp[cli]>=1.3.0
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
@@ -24,6 +24,7 @@ A Model Context Protocol server for interacting with Appwrite's API. This server
|
|
|
24
24
|
- [Claude Desktop](#usage-with-claude-desktop)
|
|
25
25
|
- [Cursor](#usage-with-cursor)
|
|
26
26
|
- [Windsurf Editor](#usage-with-windsurf-editor)
|
|
27
|
+
- [VS Code](#usage-with-vs-code)
|
|
27
28
|
- [Local Development](#local-development)
|
|
28
29
|
- [Debugging](#debugging)
|
|
29
30
|
|
|
@@ -120,8 +121,8 @@ In the Claude Desktop app, open the app's **Settings** page (press `CTRL + ,` on
|
|
|
120
121
|
"mcp-server-appwrite"
|
|
121
122
|
],
|
|
122
123
|
"env": {
|
|
123
|
-
"APPWRITE_PROJECT_ID": "
|
|
124
|
-
"APPWRITE_API_KEY": "
|
|
124
|
+
"APPWRITE_PROJECT_ID": "<YOUR_PROJECT_ID>",
|
|
125
|
+
"APPWRITE_API_KEY": "<YOUR_API_KEY>",
|
|
125
126
|
"APPWRITE_ENDPOINT": "https://<REGION>.cloud.appwrite.io/v1" // Optional
|
|
126
127
|
}
|
|
127
128
|
}
|
|
@@ -167,8 +168,8 @@ Head to Windsurf `Settings > Cascade > Model Context Protocol (MCP) Servers` and
|
|
|
167
168
|
"mcp-server-appwrite"
|
|
168
169
|
],
|
|
169
170
|
"env": {
|
|
170
|
-
"APPWRITE_PROJECT_ID": "
|
|
171
|
-
"APPWRITE_API_KEY": "
|
|
171
|
+
"APPWRITE_PROJECT_ID": "<YOUR_PROJECT_ID>",
|
|
172
|
+
"APPWRITE_API_KEY": "<YOUR_API_KEY>",
|
|
172
173
|
"APPWRITE_ENDPOINT": "https://<REGION>.cloud.appwrite.io/v1" // Optional
|
|
173
174
|
}
|
|
174
175
|
}
|
|
@@ -178,6 +179,36 @@ Head to Windsurf `Settings > Cascade > Model Context Protocol (MCP) Servers` and
|
|
|
178
179
|
|
|
179
180
|

|
|
180
181
|
|
|
182
|
+
## Usage with [VS Code](https://code.visualstudio.com/)
|
|
183
|
+
|
|
184
|
+
### Configuration
|
|
185
|
+
|
|
186
|
+
1. **Update the MCP configuration file**: Open the Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P`) and run `MCP: Open User Configuration`. It should open the `mcp.json` file in your user settings.
|
|
187
|
+
|
|
188
|
+
2. **Add the Appwrite MCP server configuration**: Add the following to the `mcp.json` file:
|
|
189
|
+
|
|
190
|
+
```json
|
|
191
|
+
{
|
|
192
|
+
"servers": {
|
|
193
|
+
"appwrite": {
|
|
194
|
+
"command": "uvx",
|
|
195
|
+
"args": ["mcp-server-appwrite", "--users"],
|
|
196
|
+
"env": {
|
|
197
|
+
"APPWRITE_PROJECT_ID": "<YOUR_PROJECT_ID>",
|
|
198
|
+
"APPWRITE_API_KEY": "<YOUR_API_KEY>",
|
|
199
|
+
"APPWRITE_ENDPOINT": "https://<REGION>.cloud.appwrite.io/v1"
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
3. **Start the MCP server**: Open the Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P`) and run `MCP: List Servers`. In the dropdown, select `appwrite` and click on the **Start Server** button.
|
|
207
|
+
|
|
208
|
+
4. **Use in Copilot Chat**: Open Copilot Chat and switch to **Agent Mode** to access the Appwrite tools.
|
|
209
|
+
|
|
210
|
+

|
|
211
|
+
|
|
181
212
|
## Local Development
|
|
182
213
|
|
|
183
214
|
### Clone the repository
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
mcp_server_appwrite/__init__.py,sha256=Od9oaUg_ckgJ4jIGa2HijocyauWDPjIC7cBRiV0P4s8,214
|
|
2
2
|
mcp_server_appwrite/__main__.py,sha256=bdaX6xMmFugzSR2QMdXJqanRx_Jh25jACJDqjE9cKEc,75
|
|
3
|
-
mcp_server_appwrite/server.py,sha256=
|
|
3
|
+
mcp_server_appwrite/server.py,sha256=KxLXrqIHllcRt_bF6QQ5FJIcDNIuc-XGaGk2qbK6BPU,5757
|
|
4
4
|
mcp_server_appwrite/service.py,sha256=H_Qr8bYFyXuJVwsPsWFi1xx12-aPM75yblKj11L4V2c,4640
|
|
5
5
|
mcp_server_appwrite/tool_manager.py,sha256=AfRjLyMpplYjF2VJna7frXDiDUZKRN8WQu9R8j3dxPc,718
|
|
6
|
-
mcp_server_appwrite-0.2.
|
|
7
|
-
mcp_server_appwrite-0.2.
|
|
8
|
-
mcp_server_appwrite-0.2.
|
|
9
|
-
mcp_server_appwrite-0.2.
|
|
10
|
-
mcp_server_appwrite-0.2.
|
|
6
|
+
mcp_server_appwrite-0.2.1.dist-info/METADATA,sha256=fGnV0JyX_weKQC3MS2k8y7H0HJAELt44smcboNYmX4g,7891
|
|
7
|
+
mcp_server_appwrite-0.2.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
8
|
+
mcp_server_appwrite-0.2.1.dist-info/entry_points.txt,sha256=-FBKUOp-Qmo9FldmiT3JUyF7djSeo8lLhxljOosuHkQ,74
|
|
9
|
+
mcp_server_appwrite-0.2.1.dist-info/licenses/LICENSE,sha256=PXzk1HbuQMAkLdHzwnBLTBIHFmgDZM0Ez2lw2gX2UQs,1096
|
|
10
|
+
mcp_server_appwrite-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
{mcp_server_appwrite-0.2.0.dist-info → mcp_server_appwrite-0.2.1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{mcp_server_appwrite-0.2.0.dist-info → mcp_server_appwrite-0.2.1.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|