mcp-server-appwrite 0.2.6__tar.gz → 0.2.8__tar.gz
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.2.6 → mcp_server_appwrite-0.2.8}/PKG-INFO +6 -3
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/README.md +4 -1
- mcp_server_appwrite-0.2.8/images/appwrite-logo-darkbg.png +0 -0
- mcp_server_appwrite-0.2.8/images/appwrite-logo-lightbg.png +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/pyproject.toml +2 -2
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/server.json +2 -2
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/src/mcp_server_appwrite/server.py +13 -9
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/uv.lock +5 -5
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/.env.example +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/.github/workflows/publish.yml +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/.gitignore +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/.python-version +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/LICENSE +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/images/claude-desktop-integration.png +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/images/cursor-integration.png +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/images/vs-code-integration.png +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/images/windsurf-integration.png +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/src/mcp_server_appwrite/__init__.py +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/src/mcp_server_appwrite/__main__.py +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/src/mcp_server_appwrite/service.py +0 -0
- {mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/src/mcp_server_appwrite/tool_manager.py +0 -0
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-server-appwrite
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.8
|
|
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>=
|
|
7
|
+
Requires-Dist: appwrite>=13.4.1
|
|
8
8
|
Requires-Dist: docstring-parser>=0.16
|
|
9
9
|
Requires-Dist: mcp[cli]>=1.3.0
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
|
|
12
12
|
# Appwrite MCP server
|
|
13
13
|
|
|
14
|
+
mcp-name: io.github.appwrite/mcp-for-api
|
|
15
|
+
|
|
14
16
|
[](https://cursor.com/install-mcp?name=appwrite&config=eyJjb21tYW5kIjoidXZ4IG1jcC1zZXJ2ZXItYXBwd3JpdGUgLS11c2VycyIsImVudiI6eyJBUFBXUklURV9BUElfS0VZIjoiPHlvdXItYXBpLWtleT4iLCJBUFBXUklURV9QUk9KRUNUX0lEIjoiPHlvdXItcHJvamVjdC1pZD4iLCJBUFBXUklURV9FTkRQT0lOVCI6Imh0dHBzOi8vPFJFR0lPTj4uY2xvdWQuYXBwd3JpdGUuaW8vdjEifX0%3D)
|
|
15
17
|
|
|
16
18
|
## Overview
|
|
@@ -97,7 +99,7 @@ Both the `uv` and `pip` setup processes require certain arguments to enable MCP
|
|
|
97
99
|
|
|
98
100
|
| Argument | Description |
|
|
99
101
|
| --- | --- |
|
|
100
|
-
| `--
|
|
102
|
+
| `--tables-db` | Enables the TablesDB API |
|
|
101
103
|
| `--users` | Enables the Users API |
|
|
102
104
|
| `--teams` | Enables the Teams API |
|
|
103
105
|
| `--storage` | Enables the Storage API |
|
|
@@ -107,6 +109,7 @@ Both the `uv` and `pip` setup processes require certain arguments to enable MCP
|
|
|
107
109
|
| `--avatars` | Enables the Avatars API |
|
|
108
110
|
| `--sites` | Enables the Sites API |
|
|
109
111
|
| `--all` | Enables all Appwrite APIs |
|
|
112
|
+
| `--databases` | Enables the Legacy Databases API |
|
|
110
113
|
|
|
111
114
|
## Usage with Claude Desktop
|
|
112
115
|
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Appwrite MCP server
|
|
2
2
|
|
|
3
|
+
mcp-name: io.github.appwrite/mcp-for-api
|
|
4
|
+
|
|
3
5
|
[](https://cursor.com/install-mcp?name=appwrite&config=eyJjb21tYW5kIjoidXZ4IG1jcC1zZXJ2ZXItYXBwd3JpdGUgLS11c2VycyIsImVudiI6eyJBUFBXUklURV9BUElfS0VZIjoiPHlvdXItYXBpLWtleT4iLCJBUFBXUklURV9QUk9KRUNUX0lEIjoiPHlvdXItcHJvamVjdC1pZD4iLCJBUFBXUklURV9FTkRQT0lOVCI6Imh0dHBzOi8vPFJFR0lPTj4uY2xvdWQuYXBwd3JpdGUuaW8vdjEifX0%3D)
|
|
4
6
|
|
|
5
7
|
## Overview
|
|
@@ -86,7 +88,7 @@ Both the `uv` and `pip` setup processes require certain arguments to enable MCP
|
|
|
86
88
|
|
|
87
89
|
| Argument | Description |
|
|
88
90
|
| --- | --- |
|
|
89
|
-
| `--
|
|
91
|
+
| `--tables-db` | Enables the TablesDB API |
|
|
90
92
|
| `--users` | Enables the Users API |
|
|
91
93
|
| `--teams` | Enables the Teams API |
|
|
92
94
|
| `--storage` | Enables the Storage API |
|
|
@@ -96,6 +98,7 @@ Both the `uv` and `pip` setup processes require certain arguments to enable MCP
|
|
|
96
98
|
| `--avatars` | Enables the Avatars API |
|
|
97
99
|
| `--sites` | Enables the Sites API |
|
|
98
100
|
| `--all` | Enables all Appwrite APIs |
|
|
101
|
+
| `--databases` | Enables the Legacy Databases API |
|
|
99
102
|
|
|
100
103
|
## Usage with Claude Desktop
|
|
101
104
|
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mcp-server-appwrite"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.8"
|
|
4
4
|
description = "MCP (Model Context Protocol) server for Appwrite"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
7
7
|
dependencies = [
|
|
8
|
-
"appwrite>=
|
|
8
|
+
"appwrite>=13.4.1",
|
|
9
9
|
"docstring-parser>=0.16",
|
|
10
10
|
"mcp[cli]>=1.3.0",
|
|
11
11
|
]
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
|
|
3
3
|
"name": "io.github.appwrite/mcp-for-api",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server for Appwrite",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.8",
|
|
6
6
|
"repository": {
|
|
7
7
|
"url": "https://github.com/appwrite/mcp-for-api",
|
|
8
8
|
"source": "github"
|
|
9
9
|
},
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
|
-
"version": "0.2.
|
|
12
|
+
"version": "0.2.8",
|
|
13
13
|
"registryType": "pypi",
|
|
14
14
|
"identifier": "mcp-server-appwrite",
|
|
15
15
|
"transport": {
|
|
@@ -10,6 +10,7 @@ from mcp.shared.exceptions import McpError
|
|
|
10
10
|
from dotenv import load_dotenv
|
|
11
11
|
from appwrite.client import Client
|
|
12
12
|
from appwrite.services.databases import Databases
|
|
13
|
+
from appwrite.services.tables_db import TablesDB
|
|
13
14
|
from appwrite.services.users import Users
|
|
14
15
|
from appwrite.services.teams import Teams
|
|
15
16
|
from appwrite.services.storage import Storage
|
|
@@ -24,7 +25,7 @@ from .service import Service
|
|
|
24
25
|
|
|
25
26
|
def parse_args():
|
|
26
27
|
parser = argparse.ArgumentParser(description='Appwrite MCP Server')
|
|
27
|
-
parser.add_argument('--
|
|
28
|
+
parser.add_argument('--tables-db', action='store_true', help='Enable TablesDB service')
|
|
28
29
|
parser.add_argument('--users', action='store_true', help='Enable Users service')
|
|
29
30
|
parser.add_argument('--teams', action='store_true', help='Enable Teams service')
|
|
30
31
|
parser.add_argument('--storage', action='store_true', help='Enable Storage service')
|
|
@@ -33,6 +34,7 @@ def parse_args():
|
|
|
33
34
|
parser.add_argument('--locale', action='store_true', help='Enable Locale service')
|
|
34
35
|
parser.add_argument('--avatars', action='store_true', help='Enable Avatars service')
|
|
35
36
|
parser.add_argument('--sites', action='store_true', help='Enable Sites service')
|
|
37
|
+
parser.add_argument('--databases', action='store_true', help='Enable Legacy Databases service')
|
|
36
38
|
parser.add_argument('--all', action='store_true', help='Enable all services')
|
|
37
39
|
return parser.parse_args()
|
|
38
40
|
|
|
@@ -60,13 +62,13 @@ tools_manager = ToolManager()
|
|
|
60
62
|
def register_services(args):
|
|
61
63
|
# If --all is specified, enable all services
|
|
62
64
|
if args.all:
|
|
63
|
-
args.
|
|
65
|
+
args.tables_db = args.users = args.teams = args.storage = True
|
|
64
66
|
args.functions = args.messaging = args.locale = args.avatars = True
|
|
65
67
|
args.sites = True
|
|
66
68
|
|
|
67
69
|
# Register services based on CLI arguments
|
|
68
|
-
if args.
|
|
69
|
-
tools_manager.register_service(Service(
|
|
70
|
+
if args.tables_db:
|
|
71
|
+
tools_manager.register_service(Service(TablesDB(client), "tables_db"))
|
|
70
72
|
if args.users:
|
|
71
73
|
tools_manager.register_service(Service(Users(client), "users"))
|
|
72
74
|
if args.teams:
|
|
@@ -83,12 +85,14 @@ def register_services(args):
|
|
|
83
85
|
tools_manager.register_service(Service(Avatars(client), "avatars"))
|
|
84
86
|
if args.sites:
|
|
85
87
|
tools_manager.register_service(Service(Sites(client), "sites"))
|
|
86
|
-
|
|
87
|
-
# If no services were specified, enable databases by default
|
|
88
|
-
if not any([args.databases, args.users, args.teams, args.storage,
|
|
89
|
-
args.functions, args.messaging, args.locale, args.avatars]):
|
|
88
|
+
if args.databases:
|
|
90
89
|
tools_manager.register_service(Service(Databases(client), "databases"))
|
|
91
90
|
|
|
91
|
+
# If no services were specified, enable tables_db by default
|
|
92
|
+
if not any([args.databases, args.tables_db, args.users, args.teams, args.storage,
|
|
93
|
+
args.functions, args.messaging, args.locale, args.avatars, args.sites]):
|
|
94
|
+
tools_manager.register_service(Service(TablesDB(client), "tables_db"))
|
|
95
|
+
|
|
92
96
|
async def serve() -> Server:
|
|
93
97
|
server = Server("Appwrite MCP Server")
|
|
94
98
|
|
|
@@ -130,7 +134,7 @@ async def _run():
|
|
|
130
134
|
write_stream,
|
|
131
135
|
InitializationOptions(
|
|
132
136
|
server_name="appwrite",
|
|
133
|
-
server_version="0.2.
|
|
137
|
+
server_version="0.2.8",
|
|
134
138
|
capabilities=server.get_capabilities(
|
|
135
139
|
notification_options=NotificationOptions(),
|
|
136
140
|
experimental_capabilities={},
|
|
@@ -27,14 +27,14 @@ wheels = [
|
|
|
27
27
|
|
|
28
28
|
[[package]]
|
|
29
29
|
name = "appwrite"
|
|
30
|
-
version = "
|
|
30
|
+
version = "13.4.1"
|
|
31
31
|
source = { registry = "https://pypi.org/simple" }
|
|
32
32
|
dependencies = [
|
|
33
33
|
{ name = "requests" },
|
|
34
34
|
]
|
|
35
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
35
|
+
sdist = { url = "https://files.pythonhosted.org/packages/30/bc/c8e9671e00fc2feda1acc5b457e8f0277e5d44dc636d0c0e990167b470d6/appwrite-13.4.1.tar.gz", hash = "sha256:f6725133b57837f962970c6f665713ca430e2c12b5cd231f355612251cf168fd", size = 62458, upload-time = "2025-10-09T11:07:05.131Z" }
|
|
36
36
|
wheels = [
|
|
37
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
37
|
+
{ url = "https://files.pythonhosted.org/packages/ae/7a/990c43b44bc5c0abe6d4ccf2dd46232e17133043e77ebed99a43a0f0be4c/appwrite-13.4.1-py3-none-any.whl", hash = "sha256:0a6abca5120a9fa1ca0423a9e476c4e7edbb43c524970d5b8eff36aa66a92eec", size = 78976, upload-time = "2025-10-09T11:07:03.819Z" },
|
|
38
38
|
]
|
|
39
39
|
|
|
40
40
|
[[package]]
|
|
@@ -205,7 +205,7 @@ cli = [
|
|
|
205
205
|
|
|
206
206
|
[[package]]
|
|
207
207
|
name = "mcp-server-appwrite"
|
|
208
|
-
version = "0.2.
|
|
208
|
+
version = "0.2.8"
|
|
209
209
|
source = { editable = "." }
|
|
210
210
|
dependencies = [
|
|
211
211
|
{ name = "appwrite" },
|
|
@@ -215,7 +215,7 @@ dependencies = [
|
|
|
215
215
|
|
|
216
216
|
[package.metadata]
|
|
217
217
|
requires-dist = [
|
|
218
|
-
{ name = "appwrite", specifier = ">=
|
|
218
|
+
{ name = "appwrite", specifier = ">=13.4.1" },
|
|
219
219
|
{ name = "docstring-parser", specifier = ">=0.16" },
|
|
220
220
|
{ name = "mcp", extras = ["cli"], specifier = ">=1.3.0" },
|
|
221
221
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/images/claude-desktop-integration.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_server_appwrite-0.2.6 → mcp_server_appwrite-0.2.8}/src/mcp_server_appwrite/tool_manager.py
RENAMED
|
File without changes
|