Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions .github/workflows/publish-mcp.yml

This file was deleted.

23 changes: 22 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,25 @@ jobs:
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: twine upload dist/*
run: twine upload dist/*

publish-mcp:
name: Publish to MCP Registry
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Install MCP Publisher
run: |
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
chmod +x mcp-publisher

- name: Login to MCP Registry
run: ./mcp-publisher login github-oidc

- name: Publish to MCP Registry
run: ./mcp-publisher publish
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mcp-server-appwrite"
version = "0.2.2"
version = "0.2.3"
description = "MCP (Model Context Protocol) server for Appwrite"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
45 changes: 6 additions & 39 deletions server.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,21 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
"name": "io.github.appwrite/mcp-for-api",
"description": "MCP (Model Context Protocol) server for Appwrite",
"version": "0.2.2",
"author": "Appwrite",
"license": "MIT",
"homepage": "https://github.com/appwrite/mcp-for-api",
"version": "0.2.3",
"websiteUrl": "https://github.com/appwrite/mcp-for-api",
"repository": {
"type": "git",
"url": "https://github.com/appwrite/mcp-for-api.git",
"source": "https://github.com/appwrite/mcp-for-api"
"url": "https://github.com/appwrite/mcp-for-api",
"source": "github"
Copy link

Copilot AI Sep 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The source value 'github' is ambiguous. Consider using the full repository URL or a more descriptive identifier for clarity.

Suggested change
"source": "github"
"source": "https://github.com/appwrite/mcp-for-api"

Copilot uses AI. Check for mistakes.
},
"packages": [
{
"version": "0.2.2",
"version": "0.2.3",
"registryType": "pypi",
"identifier": "mcp-server-appwrite",
"transport": {
"type": "stdio"
}
}
],
"capabilities": {
"tools": true
},
"command": {
"type": "pip",
"package": "mcp-server-appwrite",
"command": "mcp-server-appwrite"
},
"environment": {
"APPWRITE_PROJECT_ID": {
"description": "Your Appwrite project ID",
"required": true
},
"APPWRITE_API_KEY": {
"description": "Your Appwrite API key with necessary scopes",
"required": true
},
"APPWRITE_ENDPOINT": {
"description": "Your Appwrite endpoint URL (optional, defaults to cloud.appwrite.io)",
"required": false,
"default": "https://cloud.appwrite.io/v1"
}
},
"keywords": [
"mcp",
"model-context-protocol",
"appwrite",
"database",
"backend",
"api"
]
}