Skip to content

Commit 79f5874

Browse files
authored
Merge pull request #30 from appwrite/fix-not-found
2 parents f5e2645 + 74da7a5 commit 79f5874

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,16 @@ jobs:
3333
publish-mcp:
3434
name: Publish to MCP Registry
3535
runs-on: ubuntu-latest
36+
needs: publish
3637
permissions:
3738
id-token: write
3839
contents: read
3940
steps:
4041
- name: Check out code
4142
uses: actions/checkout@v4
43+
44+
- name: Wait for PyPI propagation
45+
run: sleep 10
4246

4347
- name: Install MCP Publisher
4448
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcp-server-appwrite"
3-
version = "0.2.5"
3+
version = "0.2.6"
44
description = "MCP (Model Context Protocol) server for Appwrite"
55
readme = "README.md"
66
requires-python = ">=3.12"

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
33
"name": "io.github.appwrite/mcp-for-api",
44
"description": "MCP (Model Context Protocol) server for Appwrite",
5-
"version": "0.2.5",
5+
"version": "0.2.6",
66
"repository": {
77
"url": "https://github.com/appwrite/mcp-for-api",
88
"source": "github"
99
},
1010
"packages": [
1111
{
12-
"version": "0.2.5",
12+
"version": "0.2.6",
1313
"registryType": "pypi",
1414
"identifier": "mcp-server-appwrite",
1515
"transport": {

0 commit comments

Comments
 (0)