@cyanheads/calculator-mcp-server 0.3.0 → 0.3.1

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/AGENTS.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Agent Protocol
2
2
 
3
3
  **Server:** calculator-mcp-server
4
- **Version:** 0.3.0
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.16`
4
+ **Version:** 0.3.1
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
@@ -272,8 +272,9 @@ Available skills:
272
272
  | `devcheck` | Lint, format, typecheck, audit |
273
273
  | `security-pass` | Audit server for MCP-flavored security gaps: output injection, scope blast radius, input sinks, tenant isolation |
274
274
  | `polish-docs-meta` | Finalize docs, README, metadata, and agent protocol for shipping |
275
- | `release-and-publish` | Publish to npm, MCP Registry, and GHCR after git wrapup |
275
+ | `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
276
276
  | `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
277
+ | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
277
278
  | `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
278
279
  | `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
279
280
  | `api-auth` | Auth modes, scopes, JWT/OAuth |
@@ -282,12 +283,15 @@ Available skills:
282
283
  | `api-context` | Context interface, logger, state, progress |
283
284
  | `api-errors` | McpError, JsonRpcErrorCode, error patterns |
284
285
  | `api-linter` | Definition linter rule catalog — invoked by `bun run lint:mcp` and `devcheck` |
286
+ | `api-mirror` | MirrorService: persistent SQLite-backed local mirror of bulk upstream datasets — Tier 3 opt-in, Node/Bun only |
285
287
  | `api-services` | LLM, Speech, Graph services |
286
288
  | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
287
289
  | `api-testing` | createMockContext, test patterns |
288
290
  | `api-utils` | Formatting, parsing, security, pagination, scheduling, telemetry helpers |
289
291
  | `api-workers` | Cloudflare Workers runtime |
290
292
 
293
+ **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.
294
+
291
295
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
292
296
 
293
297
  ---
@@ -310,6 +314,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
310
314
  | `bun run bundle` | Build and pack as `.mcpb` for one-click Claude Desktop install |
311
315
  | `bun run changelog:build` | Regenerate `CHANGELOG.md` from `changelog/*.md` |
312
316
  | `bun run changelog:check` | Verify `CHANGELOG.md` is in sync (used by devcheck) |
317
+ | `bun run release:github` | Create GitHub Release with tag subject as title, attach `.mcpb` bundle if present |
313
318
  | `bun run test` | Run tests |
314
319
  | `bun run start:stdio` | Production mode (stdio) |
315
320
  | `bun run start:http` | Production mode (HTTP) |
package/CLAUDE.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Agent Protocol
2
2
 
3
3
  **Server:** calculator-mcp-server
4
- **Version:** 0.3.0
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.16`
4
+ **Version:** 0.3.1
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
@@ -272,8 +272,9 @@ Available skills:
272
272
  | `devcheck` | Lint, format, typecheck, audit |
273
273
  | `security-pass` | Audit server for MCP-flavored security gaps: output injection, scope blast radius, input sinks, tenant isolation |
274
274
  | `polish-docs-meta` | Finalize docs, README, metadata, and agent protocol for shipping |
275
- | `release-and-publish` | Publish to npm, MCP Registry, and GHCR after git wrapup |
275
+ | `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
276
276
  | `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
277
+ | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
277
278
  | `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
278
279
  | `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
279
280
  | `api-auth` | Auth modes, scopes, JWT/OAuth |
@@ -282,12 +283,15 @@ Available skills:
282
283
  | `api-context` | Context interface, logger, state, progress |
283
284
  | `api-errors` | McpError, JsonRpcErrorCode, error patterns |
284
285
  | `api-linter` | Definition linter rule catalog — invoked by `bun run lint:mcp` and `devcheck` |
286
+ | `api-mirror` | MirrorService: persistent SQLite-backed local mirror of bulk upstream datasets — Tier 3 opt-in, Node/Bun only |
285
287
  | `api-services` | LLM, Speech, Graph services |
286
288
  | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
287
289
  | `api-testing` | createMockContext, test patterns |
288
290
  | `api-utils` | Formatting, parsing, security, pagination, scheduling, telemetry helpers |
289
291
  | `api-workers` | Cloudflare Workers runtime |
290
292
 
293
+ **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.
294
+
291
295
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
292
296
 
293
297
  ---
@@ -310,6 +314,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
310
314
  | `bun run bundle` | Build and pack as `.mcpb` for one-click Claude Desktop install |
311
315
  | `bun run changelog:build` | Regenerate `CHANGELOG.md` from `changelog/*.md` |
312
316
  | `bun run changelog:check` | Verify `CHANGELOG.md` is in sync (used by devcheck) |
317
+ | `bun run release:github` | Create GitHub Release with tag subject as title, attach `.mcpb` bundle if present |
313
318
  | `bun run test` | Run tests |
314
319
  | `bun run start:stdio` | Production mode (stdio) |
315
320
  | `bun run start:http` | Production mode (HTTP) |
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  <div align="center">
9
9
 
10
- [![Version](https://img.shields.io/badge/Version-0.3.0-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/calculator-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-%5E1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/calculator-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/calculator-mcp-server) [![TypeScript](https://img.shields.io/badge/TypeScript-%5E6.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/)
10
+ [![Version](https://img.shields.io/badge/Version-0.3.1-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/calculator-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-%5E1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/calculator-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/calculator-mcp-server) [![TypeScript](https://img.shields.io/badge/TypeScript-%5E6.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/)
11
11
 
12
12
  </div>
13
13
 
@@ -84,7 +84,7 @@ A public instance is available at `https://calculator.caseyjhand.com/mcp` — no
84
84
  ```json
85
85
  {
86
86
  "mcpServers": {
87
- "calculator": {
87
+ "calculator-mcp-server": {
88
88
  "type": "streamable-http",
89
89
  "url": "https://calculator.caseyjhand.com/mcp"
90
90
  }
@@ -99,7 +99,7 @@ Add to your MCP client config (e.g., `claude_desktop_config.json`):
99
99
  ```json
100
100
  {
101
101
  "mcpServers": {
102
- "calculator": {
102
+ "calculator-mcp-server": {
103
103
  "type": "stdio",
104
104
  "command": "bunx",
105
105
  "args": ["@cyanheads/calculator-mcp-server@latest"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/calculator-mcp-server",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Evaluate, simplify, and differentiate mathematical expressions via MCP. STDIO or Streamable HTTP.",
5
5
  "mcpName": "io.github.cyanheads/calculator-mcp-server",
6
6
  "type": "module",
@@ -25,6 +25,7 @@
25
25
  "bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/calculator-mcp-server.mcpb",
26
26
  "changelog:build": "bun scripts/build-changelog.ts",
27
27
  "changelog:check": "bun scripts/build-changelog.ts --check",
28
+ "release:github": "bun scripts/release-github.ts",
28
29
  "test": "vitest run",
29
30
  "start": "node dist/index.js",
30
31
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio node dist/index.js",
@@ -76,7 +77,7 @@
76
77
  "zod": "^4.4.3"
77
78
  },
78
79
  "dependencies": {
79
- "@cyanheads/mcp-ts-core": "^0.9.16",
80
+ "@cyanheads/mcp-ts-core": "^0.9.21",
80
81
  "mathjs": "^15.2.0",
81
82
  "pino-pretty": "^13.1.3",
82
83
  "zod": "^4.4.3"
@@ -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
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/cyanheads/calculator-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.3.0",
9
+ "version": "0.3.1",
10
10
  "remotes": [
11
11
  {
12
12
  "type": "streamable-http",
@@ -19,7 +19,7 @@
19
19
  "registryBaseUrl": "https://registry.npmjs.org",
20
20
  "identifier": "@cyanheads/calculator-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.3.0",
22
+ "version": "0.3.1",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -69,7 +69,7 @@
69
69
  "registryBaseUrl": "https://registry.npmjs.org",
70
70
  "identifier": "@cyanheads/calculator-mcp-server",
71
71
  "runtimeHint": "bun",
72
- "version": "0.3.0",
72
+ "version": "0.3.1",
73
73
  "packageArguments": [
74
74
  {
75
75
  "type": "positional",