Skip to content
This repository was archived by the owner on Mar 29, 2026. It is now read-only.
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: 5 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,27 +52,28 @@ jobs:
if: ${{ !contains(github.event.head_commit.message, '[skip build]') }}
uses: docker/setup-buildx-action@v3

- name: Extract commit hash
- name: Extract commit hash and lowercase repo
id: vars
if: ${{ !contains(github.event.head_commit.message, '[skip build]') }}
shell: bash
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
echo "ghcr_repo=${GITHUB_REPOSITORY,,}" >> $GITHUB_OUTPUT

- name: Build, tag, and push image
if: ${{ !contains(github.event.head_commit.message, '[skip build]') }}
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true
provenance: false
tags: |
${{ steps.login-ecr.outputs.registry }}/${{ vars.ECR_REPO_NAME }}:${{ steps.vars.outputs.sha_short }}
${{ steps.login-ecr.outputs.registry }}/${{ vars.ECR_REPO_NAME }}:latest
ghcr.io/${{ github.repository }}:${{ steps.vars.outputs.sha_short }}
ghcr.io/${{ github.repository }}:latest
ghcr.io/${{ steps.vars.outputs.ghcr_repo }}:${{ steps.vars.outputs.sha_short }}
ghcr.io/${{ steps.vars.outputs.ghcr_repo }}:latest
cache-from: type=registry,ref=${{ steps.login-ecr.outputs.registry }}/${{ vars.ECR_REPO_NAME }}:cache
cache-to: type=registry,ref=${{ steps.login-ecr.outputs.registry }}/${{ vars.ECR_REPO_NAME }}:cache,mode=max

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Thank you for your interest in contributing to the KeeperHub MCP Server!

1. Clone the repository:
```bash
git clone https://github.com/techops-services/keeperhub-mcp.git
git clone https://github.com/KeeperHub/keeperhub-mcp.git
cd keeperhub-mcp
```

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ RUN pnpm run build
# Runner stage
FROM node:22-alpine

LABEL org.opencontainers.image.source="https://github.com/techops-services/keeperhub-mcp"
LABEL org.opencontainers.image.source="https://github.com/KeeperHub/keeperhub-mcp"
LABEL org.opencontainers.image.description="MCP server for KeeperHub workflow automation"
LABEL org.opencontainers.image.licenses="MIT"
LABEL io.modelcontextprotocol.server.name="io.github.techops-services/keeperhub-mcp"
LABEL io.modelcontextprotocol.server.name="io.github.KeeperHub/keeperhub-mcp"

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -487,5 +487,5 @@ MIT
## Support

For issues or questions:
- GitHub Issues: [techops-services/keeperhub-mcp](https://github.com/techops-services/keeperhub-mcp/issues)
- GitHub Issues: [KeeperHub/keeperhub-mcp](https://github.com/KeeperHub/keeperhub-mcp/issues)
- Documentation: [KeeperHub Docs](https://docs.keeperhub.com)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "keeperhub-mcp",
"version": "1.0.0",
"description": "Model Context Protocol server for KeeperHub workflow automation",
"mcpName": "io.github.techops-services/keeperhub-mcp",
"mcpName": "io.github.KeeperHub/keeperhub-mcp",
"type": "module",
"main": "dist/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.techops-services/keeperhub-mcp",
"name": "io.github.KeeperHub/keeperhub-mcp",
"description": "MCP server for KeeperHub blockchain workflow automation",
"repository": {
"url": "https://github.com/techops-services/keeperhub-mcp",
"url": "https://github.com/KeeperHub/keeperhub-mcp",
"source": "github"
},
"version": "1.0.0",
Expand Down
Loading