mcp-server-appwrite 0.2.2__tar.gz → 0.2.4__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.2/.github/workflows/publish-mcp.yml → mcp_server_appwrite-0.2.4/.github/workflows/publish.yml +28 -3
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/PKG-INFO +1 -1
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/pyproject.toml +1 -1
- mcp_server_appwrite-0.2.4/server.json +21 -0
- mcp_server_appwrite-0.2.2/.github/workflows/publish.yml +0 -31
- mcp_server_appwrite-0.2.2/server.json +0 -54
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/.env.example +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/.gitignore +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/.python-version +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/LICENSE +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/README.md +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/images/claude-desktop-integration.png +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/images/cursor-integration.png +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/images/vs-code-integration.png +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/images/windsurf-integration.png +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/src/mcp_server_appwrite/__init__.py +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/src/mcp_server_appwrite/__main__.py +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/src/mcp_server_appwrite/server.py +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/src/mcp_server_appwrite/service.py +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/src/mcp_server_appwrite/tool_manager.py +0 -0
- {mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/uv.lock +0 -0
|
@@ -1,15 +1,40 @@
|
|
|
1
|
-
name: Publish to
|
|
2
|
-
|
|
1
|
+
name: Publish to PyPI
|
|
3
2
|
on:
|
|
4
3
|
release:
|
|
5
4
|
types: [published]
|
|
6
5
|
|
|
7
6
|
jobs:
|
|
7
|
+
publish:
|
|
8
|
+
name: Release build and publish
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- name: Check out code
|
|
12
|
+
uses: actions/checkout@v4
|
|
13
|
+
|
|
14
|
+
- name: Set up Python
|
|
15
|
+
uses: actions/setup-python@v5
|
|
16
|
+
with:
|
|
17
|
+
python-version: '3.12'
|
|
18
|
+
|
|
19
|
+
- name: Install build dependencies
|
|
20
|
+
run: |
|
|
21
|
+
python -m pip install --upgrade pip
|
|
22
|
+
pip install build twine
|
|
23
|
+
|
|
24
|
+
- name: Build package
|
|
25
|
+
run: python -m build
|
|
26
|
+
|
|
27
|
+
- name: Publish to PyPI
|
|
28
|
+
env:
|
|
29
|
+
TWINE_USERNAME: __token__
|
|
30
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
31
|
+
run: twine upload dist/*
|
|
32
|
+
|
|
8
33
|
publish-mcp:
|
|
9
34
|
name: Publish to MCP Registry
|
|
10
35
|
runs-on: ubuntu-latest
|
|
11
36
|
permissions:
|
|
12
|
-
id-token: write
|
|
37
|
+
id-token: write
|
|
13
38
|
contents: read
|
|
14
39
|
steps:
|
|
15
40
|
- name: Check out code
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
|
|
3
|
+
"name": "io.appwrite/mcp-for-api",
|
|
4
|
+
"description": "MCP (Model Context Protocol) server for Appwrite",
|
|
5
|
+
"version": "0.2.4",
|
|
6
|
+
"websiteUrl": "https://appwrite.io/docs/tooling/mcp/api",
|
|
7
|
+
"repository": {
|
|
8
|
+
"url": "https://github.com/appwrite/mcp-for-api",
|
|
9
|
+
"source": "github"
|
|
10
|
+
},
|
|
11
|
+
"packages": [
|
|
12
|
+
{
|
|
13
|
+
"version": "0.2.4",
|
|
14
|
+
"registryType": "pypi",
|
|
15
|
+
"identifier": "mcp-server-appwrite",
|
|
16
|
+
"transport": {
|
|
17
|
+
"type": "stdio"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
name: Publish to PyPI
|
|
2
|
-
on:
|
|
3
|
-
release:
|
|
4
|
-
types: [published]
|
|
5
|
-
|
|
6
|
-
jobs:
|
|
7
|
-
publish:
|
|
8
|
-
name: Release build and publish
|
|
9
|
-
runs-on: ubuntu-latest
|
|
10
|
-
steps:
|
|
11
|
-
- name: Check out code
|
|
12
|
-
uses: actions/checkout@v4
|
|
13
|
-
|
|
14
|
-
- name: Set up Python
|
|
15
|
-
uses: actions/setup-python@v5
|
|
16
|
-
with:
|
|
17
|
-
python-version: '3.12'
|
|
18
|
-
|
|
19
|
-
- name: Install build dependencies
|
|
20
|
-
run: |
|
|
21
|
-
python -m pip install --upgrade pip
|
|
22
|
-
pip install build twine
|
|
23
|
-
|
|
24
|
-
- name: Build package
|
|
25
|
-
run: python -m build
|
|
26
|
-
|
|
27
|
-
- name: Publish to PyPI
|
|
28
|
-
env:
|
|
29
|
-
TWINE_USERNAME: __token__
|
|
30
|
-
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
31
|
-
run: twine upload dist/*
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "io.github.appwrite/mcp-for-api",
|
|
3
|
-
"description": "MCP (Model Context Protocol) server for Appwrite",
|
|
4
|
-
"version": "0.2.2",
|
|
5
|
-
"author": "Appwrite",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"homepage": "https://github.com/appwrite/mcp-for-api",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://github.com/appwrite/mcp-for-api.git",
|
|
11
|
-
"source": "https://github.com/appwrite/mcp-for-api"
|
|
12
|
-
},
|
|
13
|
-
"packages": [
|
|
14
|
-
{
|
|
15
|
-
"version": "0.2.2",
|
|
16
|
-
"registryType": "pypi",
|
|
17
|
-
"identifier": "mcp-server-appwrite",
|
|
18
|
-
"transport": {
|
|
19
|
-
"type": "stdio"
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"capabilities": {
|
|
24
|
-
"tools": true
|
|
25
|
-
},
|
|
26
|
-
"command": {
|
|
27
|
-
"type": "pip",
|
|
28
|
-
"package": "mcp-server-appwrite",
|
|
29
|
-
"command": "mcp-server-appwrite"
|
|
30
|
-
},
|
|
31
|
-
"environment": {
|
|
32
|
-
"APPWRITE_PROJECT_ID": {
|
|
33
|
-
"description": "Your Appwrite project ID",
|
|
34
|
-
"required": true
|
|
35
|
-
},
|
|
36
|
-
"APPWRITE_API_KEY": {
|
|
37
|
-
"description": "Your Appwrite API key with necessary scopes",
|
|
38
|
-
"required": true
|
|
39
|
-
},
|
|
40
|
-
"APPWRITE_ENDPOINT": {
|
|
41
|
-
"description": "Your Appwrite endpoint URL (optional, defaults to cloud.appwrite.io)",
|
|
42
|
-
"required": false,
|
|
43
|
-
"default": "https://cloud.appwrite.io/v1"
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
|
-
"keywords": [
|
|
47
|
-
"mcp",
|
|
48
|
-
"model-context-protocol",
|
|
49
|
-
"appwrite",
|
|
50
|
-
"database",
|
|
51
|
-
"backend",
|
|
52
|
-
"api"
|
|
53
|
-
]
|
|
54
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/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
|
|
File without changes
|
{mcp_server_appwrite-0.2.2 → mcp_server_appwrite-0.2.4}/src/mcp_server_appwrite/tool_manager.py
RENAMED
|
File without changes
|
|
File without changes
|