mcp-server-appwrite 0.2.8__tar.gz → 0.3.0__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.8 → mcp_server_appwrite-0.3.0}/PKG-INFO +2 -2
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/README.md +1 -1
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/pyproject.toml +1 -1
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/server.json +2 -2
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/server.py +7 -7
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/uv.lock +1 -1
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/.env.example +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/.github/workflows/publish.yml +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/.gitignore +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/.python-version +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/LICENSE +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/appwrite-logo-darkbg.png +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/appwrite-logo-lightbg.png +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/claude-desktop-integration.png +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/cursor-integration.png +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/vs-code-integration.png +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/windsurf-integration.png +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/__init__.py +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/__main__.py +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/service.py +0 -0
- {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/tool_manager.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-server-appwrite
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: MCP (Model Context Protocol) server for Appwrite
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Requires-Python: >=3.12
|
|
@@ -99,7 +99,7 @@ Both the `uv` and `pip` setup processes require certain arguments to enable MCP
|
|
|
99
99
|
|
|
100
100
|
| Argument | Description |
|
|
101
101
|
| --- | --- |
|
|
102
|
-
| `--
|
|
102
|
+
| `--tablesdb` | Enables the TablesDB API |
|
|
103
103
|
| `--users` | Enables the Users API |
|
|
104
104
|
| `--teams` | Enables the Teams API |
|
|
105
105
|
| `--storage` | Enables the Storage API |
|
|
@@ -88,7 +88,7 @@ Both the `uv` and `pip` setup processes require certain arguments to enable MCP
|
|
|
88
88
|
|
|
89
89
|
| Argument | Description |
|
|
90
90
|
| --- | --- |
|
|
91
|
-
| `--
|
|
91
|
+
| `--tablesdb` | Enables the TablesDB API |
|
|
92
92
|
| `--users` | Enables the Users API |
|
|
93
93
|
| `--teams` | Enables the Teams API |
|
|
94
94
|
| `--storage` | Enables the Storage API |
|
|
@@ -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.
|
|
5
|
+
"version": "0.3.0",
|
|
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.
|
|
12
|
+
"version": "0.3.0",
|
|
13
13
|
"registryType": "pypi",
|
|
14
14
|
"identifier": "mcp-server-appwrite",
|
|
15
15
|
"transport": {
|
|
@@ -25,7 +25,7 @@ from .service import Service
|
|
|
25
25
|
|
|
26
26
|
def parse_args():
|
|
27
27
|
parser = argparse.ArgumentParser(description='Appwrite MCP Server')
|
|
28
|
-
parser.add_argument('--
|
|
28
|
+
parser.add_argument('--tablesdb', action='store_true', help='Enable TablesDB service')
|
|
29
29
|
parser.add_argument('--users', action='store_true', help='Enable Users service')
|
|
30
30
|
parser.add_argument('--teams', action='store_true', help='Enable Teams service')
|
|
31
31
|
parser.add_argument('--storage', action='store_true', help='Enable Storage service')
|
|
@@ -62,12 +62,12 @@ tools_manager = ToolManager()
|
|
|
62
62
|
def register_services(args):
|
|
63
63
|
# If --all is specified, enable all services
|
|
64
64
|
if args.all:
|
|
65
|
-
args.
|
|
65
|
+
args.tablesdb = args.users = args.teams = args.storage = True
|
|
66
66
|
args.functions = args.messaging = args.locale = args.avatars = True
|
|
67
67
|
args.sites = True
|
|
68
68
|
|
|
69
69
|
# Register services based on CLI arguments
|
|
70
|
-
if args.
|
|
70
|
+
if args.tablesdb:
|
|
71
71
|
tools_manager.register_service(Service(TablesDB(client), "tables_db"))
|
|
72
72
|
if args.users:
|
|
73
73
|
tools_manager.register_service(Service(Users(client), "users"))
|
|
@@ -88,8 +88,8 @@ def register_services(args):
|
|
|
88
88
|
if args.databases:
|
|
89
89
|
tools_manager.register_service(Service(Databases(client), "databases"))
|
|
90
90
|
|
|
91
|
-
# If no services were specified, enable
|
|
92
|
-
if not any([args.databases, args.
|
|
91
|
+
# If no services were specified, enable TablesDB by default
|
|
92
|
+
if not any([args.databases, args.tablesdb, args.users, args.teams, args.storage,
|
|
93
93
|
args.functions, args.messaging, args.locale, args.avatars, args.sites]):
|
|
94
94
|
tools_manager.register_service(Service(TablesDB(client), "tables_db"))
|
|
95
95
|
|
|
@@ -134,7 +134,7 @@ async def _run():
|
|
|
134
134
|
write_stream,
|
|
135
135
|
InitializationOptions(
|
|
136
136
|
server_name="appwrite",
|
|
137
|
-
server_version="0.
|
|
137
|
+
server_version="0.3.0",
|
|
138
138
|
capabilities=server.get_capabilities(
|
|
139
139
|
notification_options=NotificationOptions(),
|
|
140
140
|
experimental_capabilities={},
|
|
@@ -143,4 +143,4 @@ async def _run():
|
|
|
143
143
|
)
|
|
144
144
|
|
|
145
145
|
if __name__ == "__main__":
|
|
146
|
-
asyncio.run(_run())
|
|
146
|
+
asyncio.run(_run())
|
|
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.8 → mcp_server_appwrite-0.3.0}/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.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/tool_manager.py
RENAMED
|
File without changes
|