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

on:
workflow_dispatch:

concurrency:
group: publish-mcp-registry
cancel-in-progress: false

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4

- name: Publish to MCP Registry
run: |
curl -sL "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64.tar.gz" | tar xz mcp-publisher
./mcp-publisher login github-oidc

for attempt in 1 2 3 4 5 6; do
if ./mcp-publisher publish; then
exit 0
fi

if [ "$attempt" -eq 6 ]; then
echo "MCP Registry publish failed after $attempt attempts"
exit 1
fi

echo "MCP Registry has not observed the npm release yet; retrying in 20 seconds"
sleep 20
done
14 changes: 13 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,19 @@ jobs:
run: |
curl -sL "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64.tar.gz" | tar xz mcp-publisher
./mcp-publisher login github-oidc
./mcp-publisher publish
for attempt in 1 2 3 4 5 6; do
if ./mcp-publisher publish; then
exit 0
fi

if [ "$attempt" -eq 6 ]; then
echo "MCP Registry publish failed after $attempt attempts"
exit 1
fi

echo "MCP Registry has not observed the npm release yet; retrying in 20 seconds"
sleep 20
done

- name: Commit version bump & tag
run: |
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.0.56

- test: skip live place photos without API key
- test: cover waypoint threshold in CI
- fix: require at least 2 intermediates for waypoint optimization
- fix: route plan_route stops by resolved waypoints and add text-search fallback

## 0.0.55

- fix: restore broken star history chart (#84)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cablate/mcp-google-map",
"version": "0.0.55",
"version": "0.0.56",
"mcpName": "io.github.cablate/google-map",
"description": "18 Google Maps tools for AI agents — geocode, search, directions, weather, air quality, local rank tracking, map images via MCP server or standalone CLI",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"url": "https://github.com/cablate/mcp-google-map",
"source": "github"
},
"version": "0.0.55",
"version": "0.0.56",
"packages": [
{
"registryType": "npm",
"identifier": "@cablate/mcp-google-map",
"version": "0.0.55",
"version": "0.0.56",
"transport": {
"type": "stdio"
},
Expand Down
Loading