mcp-server-appwrite 0.2.1__tar.gz → 0.2.2__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 +27 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/PKG-INFO +1 -1
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/pyproject.toml +1 -1
- mcp_server_appwrite-0.2.2/server.json +54 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/.env.example +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/.github/workflows/publish.yml +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/.gitignore +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/.python-version +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/LICENSE +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/README.md +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/images/claude-desktop-integration.png +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/images/cursor-integration.png +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/images/vs-code-integration.png +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/images/windsurf-integration.png +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/src/mcp_server_appwrite/__init__.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/src/mcp_server_appwrite/__main__.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/src/mcp_server_appwrite/server.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/src/mcp_server_appwrite/service.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/src/mcp_server_appwrite/tool_manager.py +0 -0
- {mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/uv.lock +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
name: Publish to MCP Registry
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
publish-mcp:
|
|
9
|
+
name: Publish to MCP Registry
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
id-token: write # Required for OIDC authentication
|
|
13
|
+
contents: read
|
|
14
|
+
steps:
|
|
15
|
+
- name: Check out code
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- name: Install MCP Publisher
|
|
19
|
+
run: |
|
|
20
|
+
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
|
|
21
|
+
chmod +x mcp-publisher
|
|
22
|
+
|
|
23
|
+
- name: Login to MCP Registry
|
|
24
|
+
run: ./mcp-publisher login github-oidc
|
|
25
|
+
|
|
26
|
+
- name: Publish to MCP Registry
|
|
27
|
+
run: ./mcp-publisher publish
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
|
File without changes
|
{mcp_server_appwrite-0.2.1 → mcp_server_appwrite-0.2.2}/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.2}/src/mcp_server_appwrite/tool_manager.py
RENAMED
|
File without changes
|
|
File without changes
|