@cyanheads/openstreetmap-mcp-server 0.2.4 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CLAUDE.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Developer Protocol
2
2
 
3
3
  **Server:** @cyanheads/openstreetmap-mcp-server
4
- **Version:** 0.2.4
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.16`
4
+ **Version:** 0.2.5
5
+ **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.21`
6
6
  **Engines:** Bun ≥1.3.0, Node ≥24.0.0
7
7
  **MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
8
8
  **Zod:** ^4.4.3
@@ -266,6 +266,7 @@ Available skills:
266
266
  | `git-wrapup` | Land working-tree changes as a versioned commit + annotated tag — version bump, changelog, verify, tag. Local only. |
267
267
  | `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
268
268
  | `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
269
+ | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
269
270
  | `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
270
271
  | `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
271
272
  | `api-auth` | Auth modes, scopes, JWT/OAuth |
@@ -280,6 +281,8 @@ Available skills:
280
281
  | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
281
282
  | `api-workers` | Cloudflare Workers runtime |
282
283
 
284
+ **Chaining skills into pipelines.** When the user wants a multi-phase effort — build this server out, QA-and-fix the surface, update-and-ship — *and you can spawn sub-agents*, `skills/orchestrations/SKILL.md` sequences the task skills above into a gated pipeline with verification at each step. Read it to drive the run. Optional: skip it if you can't orchestrate sub-agents, and ignore it entirely if you were *spawned* as one — you've already been scoped to a single phase.
285
+
283
286
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
284
287
 
285
288
  ---
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
 
11
11
 
12
- [![Version](https://img.shields.io/badge/Version-0.2.4-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Docker](https://img.shields.io/badge/Docker-ghcr.io-2496ED?style=flat-square&logo=docker&logoColor=white)](https://github.com/users/cyanheads/packages/container/package/openstreetmap-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/openstreetmap-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/openstreetmap-mcp-server) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.3.0-blueviolet.svg?style=flat-square)](https://bun.sh/)
12
+ [![Version](https://img.shields.io/badge/Version-0.2.5-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Docker](https://img.shields.io/badge/Docker-ghcr.io-2496ED?style=flat-square&logo=docker&logoColor=white)](https://github.com/users/cyanheads/packages/container/package/openstreetmap-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/openstreetmap-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/openstreetmap-mcp-server) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.3.0-blueviolet.svg?style=flat-square)](https://bun.sh/)
13
13
 
14
14
  </div>
15
15
 
@@ -146,7 +146,7 @@ Add the following to your MCP client configuration file.
146
146
  ```json
147
147
  {
148
148
  "mcpServers": {
149
- "openstreetmap": {
149
+ "openstreetmap-mcp-server": {
150
150
  "type": "stdio",
151
151
  "command": "bunx",
152
152
  "args": ["@cyanheads/openstreetmap-mcp-server@latest"],
@@ -164,7 +164,7 @@ Or with npx (no Bun required):
164
164
  ```json
165
165
  {
166
166
  "mcpServers": {
167
- "openstreetmap": {
167
+ "openstreetmap-mcp-server": {
168
168
  "type": "stdio",
169
169
  "command": "npx",
170
170
  "args": ["-y", "@cyanheads/openstreetmap-mcp-server@latest"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/openstreetmap-mcp-server",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "mcpName": "io.github.cyanheads/openstreetmap-mcp-server",
5
5
  "description": "Geocode, reverse geocode, and run Overpass spatial queries on OpenStreetMap data via MCP. STDIO or Streamable HTTP.",
6
6
  "type": "module",
@@ -23,6 +23,7 @@
23
23
  "list-skills": "bun run scripts/list-skills.ts",
24
24
  "lint:mcp": "bun run scripts/lint-mcp.ts",
25
25
  "lint:packaging": "bun run scripts/lint-packaging.ts",
26
+ "release:github": "tsx scripts/release-github.ts",
26
27
  "bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/openstreetmap-mcp-server.mcpb",
27
28
  "changelog:build": "bun run scripts/build-changelog.ts",
28
29
  "changelog:check": "bun run scripts/build-changelog.ts --check",
@@ -77,7 +78,7 @@
77
78
  "access": "public"
78
79
  },
79
80
  "dependencies": {
80
- "@cyanheads/mcp-ts-core": "^0.9.16",
81
+ "@cyanheads/mcp-ts-core": "^0.9.21",
81
82
  "pino-pretty": "^13.1.3",
82
83
  "zod": "^4.4.3"
83
84
  },
@@ -87,8 +88,8 @@
87
88
  "depcheck": "^1.4.7",
88
89
  "ignore": "^7.0.5",
89
90
  "tsc-alias": "^1.8.17",
90
- "tsx": "^4.22.3",
91
+ "tsx": "^4.22.4",
91
92
  "typescript": "^6.0.3",
92
- "vitest": "^4.1.7"
93
+ "vitest": "^4.1.8"
93
94
  }
94
95
  }
package/server.json CHANGED
@@ -12,14 +12,14 @@
12
12
  "url": "https://openstreetmap.caseyjhand.com/mcp"
13
13
  }
14
14
  ],
15
- "version": "0.2.4",
15
+ "version": "0.2.5",
16
16
  "packages": [
17
17
  {
18
18
  "registryType": "npm",
19
19
  "registryBaseUrl": "https://registry.npmjs.org",
20
20
  "identifier": "@cyanheads/openstreetmap-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.2.4",
22
+ "version": "0.2.5",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -43,7 +43,7 @@
43
43
  "description": "User-Agent sent to Nominatim and Overpass. Required by usage policy.",
44
44
  "format": "string",
45
45
  "isRequired": false,
46
- "default": "openstreetmap-mcp-server/0.2.4"
46
+ "default": "openstreetmap-mcp-server/0.2.5"
47
47
  },
48
48
  {
49
49
  "name": "OSM_OVERPASS_BASE_URL",
@@ -69,7 +69,7 @@
69
69
  "registryBaseUrl": "https://registry.npmjs.org",
70
70
  "identifier": "@cyanheads/openstreetmap-mcp-server",
71
71
  "runtimeHint": "bun",
72
- "version": "0.2.4",
72
+ "version": "0.2.5",
73
73
  "packageArguments": [
74
74
  {
75
75
  "type": "positional",
@@ -127,7 +127,7 @@
127
127
  "description": "User-Agent sent to Nominatim and Overpass. Required by usage policy.",
128
128
  "format": "string",
129
129
  "isRequired": false,
130
- "default": "openstreetmap-mcp-server/0.2.4"
130
+ "default": "openstreetmap-mcp-server/0.2.5"
131
131
  },
132
132
  {
133
133
  "name": "OSM_OVERPASS_BASE_URL",