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.
Files changed (21) hide show
  1. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/PKG-INFO +2 -2
  2. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/README.md +1 -1
  3. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/pyproject.toml +1 -1
  4. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/server.json +2 -2
  5. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/server.py +7 -7
  6. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/uv.lock +1 -1
  7. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/.env.example +0 -0
  8. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/.github/workflows/publish.yml +0 -0
  9. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/.gitignore +0 -0
  10. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/.python-version +0 -0
  11. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/LICENSE +0 -0
  12. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/appwrite-logo-darkbg.png +0 -0
  13. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/appwrite-logo-lightbg.png +0 -0
  14. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/claude-desktop-integration.png +0 -0
  15. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/cursor-integration.png +0 -0
  16. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/vs-code-integration.png +0 -0
  17. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/images/windsurf-integration.png +0 -0
  18. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/__init__.py +0 -0
  19. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/__main__.py +0 -0
  20. {mcp_server_appwrite-0.2.8 → mcp_server_appwrite-0.3.0}/src/mcp_server_appwrite/service.py +0 -0
  21. {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.2.8
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
- | `--tables-db` | Enables the TablesDB API |
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
- | `--tables-db` | Enables the TablesDB API |
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 |
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mcp-server-appwrite"
3
- version = "0.2.8"
3
+ version = "0.3.0"
4
4
  description = "MCP (Model Context Protocol) server for Appwrite"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -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.8",
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.2.8",
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('--tables-db', action='store_true', help='Enable TablesDB service')
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.tables_db = args.users = args.teams = args.storage = True
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.tables_db:
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 tables_db by default
92
- if not any([args.databases, args.tables_db, args.users, args.teams, args.storage,
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.2.8",
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())
@@ -205,7 +205,7 @@ cli = [
205
205
 
206
206
  [[package]]
207
207
  name = "mcp-server-appwrite"
208
- version = "0.2.8"
208
+ version = "0.3.0"
209
209
  source = { editable = "." }
210
210
  dependencies = [
211
211
  { name = "appwrite" },