diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 4f687118..4e0a6579 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -67,6 +67,7 @@ jobs:
needs: [create-metadata]
if: ${{ needs.create-metadata.outputs.npm_packages != '[]' || needs.create-metadata.outputs.pypi_packages != '[]' }}
runs-on: ubuntu-latest
+ environment: release
outputs:
changes_made: ${{ steps.commit.outputs.changes_made }}
steps:
@@ -170,7 +171,7 @@ jobs:
working-directory: src/${{ matrix.package }}
run: |
VERSION=$(jq -r .version package.json)
- if npm view --json | jq --arg version "$VERSION" '[.[]][0].versions | contains([$version])'; then
+ if npm view --json | jq -e --arg version "$VERSION" '[.[]][0].versions | contains([$version])'; then
echo "Version $VERSION already exists on npm"
exit 1
fi
@@ -210,3 +211,11 @@ jobs:
gh release create "$VERSION" \
--title "Release $VERSION" \
--notes-file RELEASE_NOTES.md
+
+ - name: Docker MCP images
+ uses: peter-evans/repository-dispatch@v3
+ with:
+ token: ${{ secrets.DOCKER_TOKEN }}
+ repository: docker/labs-ai-tools-for-devs
+ event-type: build-mcp-images
+ client-payload: '{"ref": "${{ needs.create-metadata.outputs.version }}"}'
diff --git a/README.md b/README.md
index 154d73db..2ad3ebb3 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,7 @@ Official integrations are maintained by companies building production ready MCP
-
**[Exa](https://github.com/exa-labs/exa-mcp-server)** - Search Engine made for AIs by [Exa](https://exa.ai)
-
**[Fireproof](https://github.com/fireproof-storage/mcp-database-server)** - Immutable ledger database with live synchronization
- **[IBM wxflows](https://github.com/IBM/wxflows/tree/main/examples/mcp/javascript)** - Tool platform by IBM to build, test and deploy tools for any data source
+-
**[Grafana](https://github.com/grafana/mcp-grafana)** - Search dashboards, investigate incidents and query datasources in your Grafana instance
-
**[JetBrains](https://github.com/JetBrains/mcp-jetbrains)** – Work on your code with JetBrains IDEs
-
**[Kagi Search](https://github.com/kagisearch/kagimcp)** - Search the web using Kagi's search API
-
**[Meilisearch](https://github.com/meilisearch/meilisearch-mcp)** - Interact & query with Meilisearch (Full-text & semantic search API)
diff --git a/src/filesystem/README.md b/src/filesystem/README.md
index 05c915ad..c52f1a40 100644
--- a/src/filesystem/README.md
+++ b/src/filesystem/README.md
@@ -124,7 +124,7 @@ Note: all directories must be mounted to `/projects` by default.
"--mount", "type=bind,src=/path/to/other/allowed/dir,dst=/projects/other/allowed/dir,ro",
"--mount", "type=bind,src=/path/to/file.txt,dst=/projects/path/to/file.txt",
"mcp/filesystem",
- "/projects",
+ "/projects"
]
}
}