mcp-server-appwrite 0.2.1__tar.gz → 0.2.3__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.3/.github/workflows/publish.yml +52 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/PKG-INFO +1 -1
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/pyproject.toml +1 -1
- mcp_server_appwrite-0.2.3/server.json +21 -0
- mcp_server_appwrite-0.2.1/.github/workflows/publish.yml +0 -31
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/.env.example +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/.gitignore +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/.python-version +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/LICENSE +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/README.md +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/images/claude-desktop-integration.png +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/images/cursor-integration.png +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/images/vs-code-integration.png +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/images/windsurf-integration.png +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/src/mcp_server_appwrite/__init__.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/src/mcp_server_appwrite/__main__.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/src/mcp_server_appwrite/server.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/src/mcp_server_appwrite/service.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/src/mcp_server_appwrite/tool_manager.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/uv.lock +0 -0
|
@@ -0,0 +1,52 @@
|
|
|
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/*
|
|
32
|
+
|
|
33
|
+
publish-mcp:
|
|
34
|
+
name: Publish to MCP Registry
|
|
35
|
+
runs-on: ubuntu-latest
|
|
36
|
+
permissions:
|
|
37
|
+
id-token: write
|
|
38
|
+
contents: read
|
|
39
|
+
steps:
|
|
40
|
+
- name: Check out code
|
|
41
|
+
uses: actions/checkout@v4
|
|
42
|
+
|
|
43
|
+
- name: Install MCP Publisher
|
|
44
|
+
run: |
|
|
45
|
+
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/v1.1.0/mcp-publisher_1.1.0_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
|
|
46
|
+
chmod +x mcp-publisher
|
|
47
|
+
|
|
48
|
+
- name: Login to MCP Registry
|
|
49
|
+
run: ./mcp-publisher login github-oidc
|
|
50
|
+
|
|
51
|
+
- name: Publish to MCP Registry
|
|
52
|
+
run: ./mcp-publisher publish
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
|
|
3
|
+
"name": "io.github.appwrite/mcp-for-api",
|
|
4
|
+
"description": "MCP (Model Context Protocol) server for Appwrite",
|
|
5
|
+
"version": "0.2.3",
|
|
6
|
+
"websiteUrl": "https://github.com/appwrite/mcp-for-api",
|
|
7
|
+
"repository": {
|
|
8
|
+
"url": "https://github.com/appwrite/mcp-for-api",
|
|
9
|
+
"source": "github"
|
|
10
|
+
},
|
|
11
|
+
"packages": [
|
|
12
|
+
{
|
|
13
|
+
"version": "0.2.3",
|
|
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/*
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.3}/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.1 → mcp_server_appwrite-0.2.3}/src/mcp_server_appwrite/tool_manager.py
RENAMED
|
File without changes
|
|
File without changes
|