mcp-server-appwrite 0.1.0__py3-none-any.whl → 0.1.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-0.1.0.dist-info → mcp_server_appwrite-0.1.1.dist-info}/METADATA +37 -25
- {mcp_server_appwrite-0.1.0.dist-info → mcp_server_appwrite-0.1.1.dist-info}/RECORD +5 -5
- {mcp_server_appwrite-0.1.0.dist-info → mcp_server_appwrite-0.1.1.dist-info}/WHEEL +0 -0
- {mcp_server_appwrite-0.1.0.dist-info → mcp_server_appwrite-0.1.1.dist-info}/entry_points.txt +0 -0
- {mcp_server_appwrite-0.1.0.dist-info → mcp_server_appwrite-0.1.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-server-appwrite
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: MCP (Model Context Protocol) server for Appwrite
|
5
5
|
License-File: LICENSE
|
6
6
|
Requires-Python: >=3.12
|
@@ -27,6 +27,37 @@ Currently the server supports the following tools:
|
|
27
27
|
|
28
28
|
> Please note that the Storage and Functions tools are currently in beta and methods like createFile and createDeployment are not yet supported.
|
29
29
|
|
30
|
+
## Configuration
|
31
|
+
|
32
|
+
Create a `.env` file in the directory you're runing the server from:
|
33
|
+
|
34
|
+
```env
|
35
|
+
APPWRITE_API_KEY=your-api-key
|
36
|
+
APPWRITE_PROJECT_ID=your-project-id
|
37
|
+
APPWRITE_ENDPOINT=your-endpoint # Optional, defaults to https://cloud.appwrite.io/v1
|
38
|
+
```
|
39
|
+
|
40
|
+
## Installation
|
41
|
+
|
42
|
+
### Using uv (recommended)
|
43
|
+
When using [`uv`](https://docs.astral.sh/uv/) no specific installation is needed. We will
|
44
|
+
use [`uvx`](https://docs.astral.sh/uv/guides/tools/) to directly run *mcp-server-sentry*.
|
45
|
+
|
46
|
+
```bash
|
47
|
+
uvx run mcp-server-appwrite
|
48
|
+
```
|
49
|
+
|
50
|
+
### Using pip
|
51
|
+
|
52
|
+
```bash
|
53
|
+
pip install mcp-server-appwrite
|
54
|
+
```
|
55
|
+
Then run the server using
|
56
|
+
|
57
|
+
```bash
|
58
|
+
python -m mcp_server_appwrite
|
59
|
+
```
|
60
|
+
|
30
61
|
## Local Development
|
31
62
|
|
32
63
|
Clone the repository
|
@@ -48,34 +79,21 @@ uv venv
|
|
48
79
|
source .venv/bin/activate
|
49
80
|
```
|
50
81
|
|
51
|
-
## Configuration
|
52
|
-
|
53
|
-
Create a `.env` file in the root directory based on `.env.example`:
|
54
|
-
|
55
|
-
```env
|
56
|
-
APPWRITE_API_KEY=your-api-key
|
57
|
-
APPWRITE_PROJECT_ID=your-project-id
|
58
|
-
APPWRITE_ENDPOINT=your-endpoint # Optional, defaults to https://cloud.appwrite.io/v1
|
59
|
-
```
|
60
|
-
|
61
82
|
Run the server
|
62
83
|
|
63
84
|
```bash
|
64
85
|
uv run -v --directory ./ mcp-server-appwrite
|
65
86
|
```
|
66
87
|
|
67
|
-
|
88
|
+
## Usage with Claude Desktop
|
68
89
|
|
69
90
|
Add this to your `claude_desktop_config.json`:
|
70
91
|
|
71
92
|
```json
|
72
93
|
"mcpServers": {
|
73
94
|
"appwrite": {
|
74
|
-
"command": "
|
95
|
+
"command": "uvx",
|
75
96
|
"args": [
|
76
|
-
"run",
|
77
|
-
"--directory",
|
78
|
-
"<path-to-repository>",
|
79
97
|
"mcp-server-appwrite"
|
80
98
|
],
|
81
99
|
"env": {
|
@@ -86,23 +104,19 @@ Add this to your `claude_desktop_config.json`:
|
|
86
104
|
}
|
87
105
|
}
|
88
106
|
```
|
89
|
-
|
90
107
|
Upon successful configuration, you should be able to see the server in the list of available servers in Claude Desktop.
|
91
108
|
|
92
109
|

|
93
110
|
|
94
|
-
|
111
|
+
## Usage with [Zed](https://github.com/zed-industries/zed)
|
95
112
|
|
96
113
|
Add to your Zed settings.json:
|
97
114
|
|
98
115
|
```json
|
99
116
|
"context_servers": {
|
100
117
|
"appwrite": {
|
101
|
-
"command": "
|
118
|
+
"command": "uvx",
|
102
119
|
"args": [
|
103
|
-
"run",
|
104
|
-
"--directory",
|
105
|
-
"<path-to-repository>",
|
106
120
|
"mcp-server-appwrite"
|
107
121
|
],
|
108
122
|
"env": {
|
@@ -119,7 +133,7 @@ Add to your Zed settings.json:
|
|
119
133
|
Head to Cursor `Settings > Features > MCP Servers` and click on **Add New MCP Server**. Choose the type as `Command` and add the command below to the **Command** field.
|
120
134
|
|
121
135
|
```bash
|
122
|
-
APPWRITE_PROJECT_ID=your-project-id APPWRITE_API_KEY=your-api-key
|
136
|
+
APPWRITE_PROJECT_ID=your-project-id APPWRITE_API_KEY=your-api-key uvx mcp-server-appwrite
|
123
137
|
```
|
124
138
|
|
125
139
|

|
@@ -150,6 +164,4 @@ This MCP server is licensed under the MIT License. This means you are free to us
|
|
150
164
|
- https://portkey.ai/mcp-servers
|
151
165
|
- https://www.claudemcp.com/servers
|
152
166
|
- Add support for SSE server
|
153
|
-
- Release to PIP
|
154
|
-
- ✅ Add support for env vars
|
155
167
|
- Add suppport for resources
|
@@ -3,8 +3,8 @@ mcp_server_appwrite/__main__.py,sha256=bdaX6xMmFugzSR2QMdXJqanRx_Jh25jACJDqjE9cK
|
|
3
3
|
mcp_server_appwrite/server.py,sha256=bR_1QL9hmFeNS4aNOZbgEHkZCfQI7iBOvAnL1BYRkoU,3960
|
4
4
|
mcp_server_appwrite/service.py,sha256=WwKoh9o7W7ZOmhY0yg6k4R2cghQRe-yMTNbFtB6TFT8,2895
|
5
5
|
mcp_server_appwrite/tool_manager.py,sha256=AfRjLyMpplYjF2VJna7frXDiDUZKRN8WQu9R8j3dxPc,718
|
6
|
-
mcp_server_appwrite-0.1.
|
7
|
-
mcp_server_appwrite-0.1.
|
8
|
-
mcp_server_appwrite-0.1.
|
9
|
-
mcp_server_appwrite-0.1.
|
10
|
-
mcp_server_appwrite-0.1.
|
6
|
+
mcp_server_appwrite-0.1.1.dist-info/METADATA,sha256=hGVxdm0fGuwxpdUIbvtfTOzo18UniTzhQcdTdA4mc58,3970
|
7
|
+
mcp_server_appwrite-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
8
|
+
mcp_server_appwrite-0.1.1.dist-info/entry_points.txt,sha256=-FBKUOp-Qmo9FldmiT3JUyF7djSeo8lLhxljOosuHkQ,74
|
9
|
+
mcp_server_appwrite-0.1.1.dist-info/licenses/LICENSE,sha256=PXzk1HbuQMAkLdHzwnBLTBIHFmgDZM0Ez2lw2gX2UQs,1096
|
10
|
+
mcp_server_appwrite-0.1.1.dist-info/RECORD,,
|
File without changes
|
{mcp_server_appwrite-0.1.0.dist-info → mcp_server_appwrite-0.1.1.dist-info}/entry_points.txt
RENAMED
File without changes
|
{mcp_server_appwrite-0.1.0.dist-info → mcp_server_appwrite-0.1.1.dist-info}/licenses/LICENSE
RENAMED
File without changes
|