deploy-mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited deploy-mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
gh workflow run "Deploy MCP Server" -f branch=main -f deploy_staging=truegh workflow run "Deploy MCP Server" -f branch=main -f deploy_production=truegh workflow run "Deploy MCP Server" -f branch=main -f deploy_staging=true -f deploy_production=truegh workflow run "Deploy MCP Server" -f branch=feat/my-branch -f deploy_staging=true# Watch the workflow run
gh run list --workflow="Deploy MCP Server" --limit 3
gh run watch <run-id>
# Check pod rollout
kubectl rollout status deploy/futuresearch-mcp-staging -n futuresearch-mcp-staging --timeout=5m
# Verify pods are running
kubectl get pods -n futuresearch-mcp-staging -o wideThe GitHub Actions workflow (.github/workflows/deploy-mcp.yaml) does:
latest on main)values.yaml — base configvalues.staging.yaml — staging overrides (MCP_SERVER_URL, REDIS_DB, replicaCount, host)values.secrets.staging.yaml — SOPS-decrypted secrets (Supabase, API keys)The deploy uses --atomic so it auto-rolls back on failure.
Edit futuresearch-mcp/deploy/chart/values.staging.yaml:
replicaCount: 2 # Change thisCommit, push, and redeploy.
# Staging
kubectl scale deploy futuresearch-mcp-staging -n futuresearch-mcp-staging --replicas=3
# Take offline
kubectl scale deploy futuresearch-mcp-staging -n futuresearch-mcp-staging --replicas=0| Environment | Namespace | Host | Redis DB |
|---|---|---|---|
| Staging | futuresearch-mcp-staging | mcp-staging.futuresearch.ai | 14 |
| Production | futuresearch-mcp | mcp.futuresearch.ai | (default in values.yaml) |
Both environments hit the same production FutureSearch API — there is no staging API.
# View current secrets
sops -d futuresearch-mcp/deploy/chart/secrets.staging.enc.yaml
# Update a value
sops --set '["secrets"]["data"]["KEY_NAME"] "new-value"' futuresearch-mcp/deploy/chart/secrets.staging.enc.yamlCommit the encrypted file and redeploy.
| File | Purpose |
|---|---|
.github/workflows/deploy-mcp.yaml | CI/CD workflow (checks → build → deploy) |
futuresearch-mcp/deploy/chart/values.yaml | Base Helm values |
futuresearch-mcp/deploy/chart/values.staging.yaml | Staging overrides |
futuresearch-mcp/deploy/chart/secrets.enc.yaml | Production secrets (SOPS) |
futuresearch-mcp/deploy/chart/secrets.staging.enc.yaml | Staging secrets (SOPS) |
futuresearch-mcp/deploy/Dockerfile | Server container image |
gcloud auth application-default login if decryption fails.cancel-in-progress: false — if a deploy is running, the next one queues.--atomic means a failed deploy auto-reverts to the previous release. Check helm history if this happens.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.