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
29 changes: 29 additions & 0 deletions .github/workflows/publish-oss.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish MCP Server

on:
push:
tags:
- 'v*.*.*'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Update server.json version from tag
run: |
VERSION=${GITHUB_REF_NAME#v}
echo "Updating server.json to version $VERSION"
jq --arg v "$VERSION" '.version = $v' server.json > server.json.tmp && mv server.json.tmp server.json

- name: Download mcp-publisher
run: |
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64" -o mcp-publisher
chmod +x mcp-publisher

- name: Login and Publish to MCP Registry
run: |
./mcp-publisher login dns --domain webflow.com --private-key ${{ secrets.OSS_PRIVATE_KEY }}
./mcp-publisher publish
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@ node_modules/
.idea/
.vscode/
.cursor
pnpm-lock.yaml
pnpm-lock.yaml

# Private keys
key.pem
key.pem.pub
*.pem
16 changes: 16 additions & 0 deletions server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"name": "com.webflow/mcp",
"description": "AI-powered design and management for Webflow Sites",
"repository": {
"url": "https://github.com/webflow/mcp-server",
"source": "github"
},
"version": "2.0.0",
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.webflow.com/mcp"
}
]
}