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
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,12 @@ jobs:
setupGitUser: false
publish: "pnpm ci:publish"
version: "pnpm ci:version"
- name: Install MCP Publisher
run: |
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/latest/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
- name: Login to MCP Registry
run: |
echo "${{ secrets.MCP_REGISTRY_PRIVATE_KEY }}" > key.pem
mcp-publisher login dns --domain workspace-developer.goog --private-key-file key.pem
- name: Publish to MCP Registry
run: ./mcp-publisher publish
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ node_modules
.vscode-test/
*.vsix
.env
.turbo
.turbo
**/key.pem
.mcpregistry*
13 changes: 13 additions & 0 deletions server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
"name": "goog.workspace-developer/developer-tools",
"title": "Google Workspace Developer Tools",
"description": "Provides tools for searching Google Workspace documentation and much more.",
"version": "1.0.0",
"remotes": [
{
"type": "streamable-http",
"url": "https://workspace-developer.goog/mcp"
}
]
}