@cyanheads/libofcongress-mcp-server 0.2.6 → 0.2.7

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:** libofcongress-mcp-server
4
- **Version:** 0.2.6
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.16`
4
+ **Version:** 0.2.7
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
@@ -113,7 +113,7 @@ import { z } from '@cyanheads/mcp-ts-core';
113
113
  import { parseEnvConfig } from '@cyanheads/mcp-ts-core/config';
114
114
 
115
115
  const ServerConfigSchema = z.object({
116
- userAgent: z.string().default('libofcongress-mcp-server/0.2.6').describe('User-Agent header for LOC API requests.'),
116
+ userAgent: z.string().default('libofcongress-mcp-server/0.2.7').describe('User-Agent header for LOC API requests.'),
117
117
  requestDelayMs: z.coerce.number().default(3100).describe('Delay in ms between LOC API requests.'),
118
118
  });
119
119
 
@@ -258,6 +258,7 @@ Available skills:
258
258
  | `git-wrapup` | Land working-tree changes as a versioned commit + annotated tag — version bump, changelog, verify, tag. Local only. |
259
259
  | `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
260
260
  | `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
261
+ | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
261
262
  | `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
262
263
  | `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
263
264
  | `api-auth` | Auth modes, scopes, JWT/OAuth |
@@ -272,6 +273,8 @@ Available skills:
272
273
  | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
273
274
  | `api-workers` | Cloudflare Workers runtime |
274
275
 
276
+ **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.
277
+
275
278
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
276
279
 
277
280
  ---
@@ -294,6 +297,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
294
297
  | `npm run start:http` | Production mode (HTTP) |
295
298
  | `npm run changelog:build` | Regenerate `CHANGELOG.md` from `changelog/*.md` |
296
299
  | `npm run changelog:check` | Verify `CHANGELOG.md` is in sync (used by devcheck) |
300
+ | `npm run release:github` | Create a GitHub Release from the current annotated tag |
297
301
  | `npm run bundle` | Build and pack as `.mcpb` for one-click Claude Desktop install |
298
302
 
299
303
  ---
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.2.6-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/libofcongress-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/%40cyanheads%2Flibofcongress-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/libofcongress-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.11-blueviolet.svg?style=flat-square)](https://bun.sh/)
10
+ [![Version](https://img.shields.io/badge/Version-0.2.7-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/libofcongress-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/%40cyanheads%2Flibofcongress-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/libofcongress-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.11-blueviolet.svg?style=flat-square)](https://bun.sh/)
11
11
 
12
12
  </div>
13
13
 
@@ -148,10 +148,10 @@ Add the following to your MCP client configuration file.
148
148
  ```json
149
149
  {
150
150
  "mcpServers": {
151
- "libofcongress": {
151
+ "libofcongress-mcp-server": {
152
152
  "type": "stdio",
153
153
  "command": "bunx",
154
- "args": ["libofcongress-mcp-server@latest"],
154
+ "args": ["@cyanheads/libofcongress-mcp-server@latest"],
155
155
  "env": {
156
156
  "MCP_TRANSPORT_TYPE": "stdio",
157
157
  "MCP_LOG_LEVEL": "info"
@@ -166,10 +166,10 @@ Or with npx (no Bun required):
166
166
  ```json
167
167
  {
168
168
  "mcpServers": {
169
- "libofcongress": {
169
+ "libofcongress-mcp-server": {
170
170
  "type": "stdio",
171
171
  "command": "npx",
172
- "args": ["-y", "libofcongress-mcp-server@latest"],
172
+ "args": ["-y", "@cyanheads/libofcongress-mcp-server@latest"],
173
173
  "env": {
174
174
  "MCP_TRANSPORT_TYPE": "stdio",
175
175
  "MCP_LOG_LEVEL": "info"
@@ -184,7 +184,7 @@ Or with Docker:
184
184
  ```json
185
185
  {
186
186
  "mcpServers": {
187
- "libofcongress": {
187
+ "libofcongress-mcp-server": {
188
188
  "type": "stdio",
189
189
  "command": "docker",
190
190
  "args": [
@@ -7,7 +7,7 @@ import { parseEnvConfig } from '@cyanheads/mcp-ts-core/config';
7
7
  const ServerConfigSchema = z.object({
8
8
  userAgent: z
9
9
  .string()
10
- .default('libofcongress-mcp-server/0.2.6')
10
+ .default('libofcongress-mcp-server/0.2.7')
11
11
  .describe('User-Agent header sent with LOC API requests. LOC recommends a descriptive value for polite access.'),
12
12
  requestDelayMs: z.coerce
13
13
  .number()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/libofcongress-mcp-server",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "mcpName": "io.github.cyanheads/libofcongress-mcp-server",
5
5
  "description": "Search LOC digital collections, browse Chronicling America newspapers with full OCR text, and look up LC Subject Headings via MCP. STDIO or Streamable HTTP.",
6
6
  "type": "module",
@@ -25,6 +25,7 @@
25
25
  "bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/libofcongress-mcp-server.mcpb",
26
26
  "changelog:build": "bun run scripts/build-changelog.ts",
27
27
  "changelog:check": "bun run scripts/build-changelog.ts --check",
28
+ "release:github": "bun run scripts/release-github.ts",
28
29
  "test": "bunx vitest run",
29
30
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
30
31
  "start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js"
@@ -75,7 +76,7 @@
75
76
  "access": "public"
76
77
  },
77
78
  "dependencies": {
78
- "@cyanheads/mcp-ts-core": "^0.9.16",
79
+ "@cyanheads/mcp-ts-core": "^0.9.21",
79
80
  "pino-pretty": "^13.1.3",
80
81
  "zod": "^4.4.3"
81
82
  },
@@ -86,6 +87,6 @@
86
87
  "ignore": "^7.0.5",
87
88
  "tsc-alias": "^1.8.17",
88
89
  "typescript": "^6.0.3",
89
- "vitest": "^4.1.7"
90
+ "vitest": "^4.1.8"
90
91
  }
91
92
  }
package/server.json CHANGED
@@ -6,14 +6,14 @@
6
6
  "url": "https://github.com/cyanheads/libofcongress-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.2.6",
9
+ "version": "0.2.7",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "registryBaseUrl": "https://registry.npmjs.org",
14
14
  "identifier": "@cyanheads/libofcongress-mcp-server",
15
15
  "runtimeHint": "bun",
16
- "version": "0.2.6",
16
+ "version": "0.2.7",
17
17
  "packageArguments": [
18
18
  {
19
19
  "type": "positional",
@@ -30,7 +30,7 @@
30
30
  "description": "User-Agent header sent with LOC API requests. LOC recommends a descriptive value for polite access.",
31
31
  "format": "string",
32
32
  "isRequired": false,
33
- "default": "libofcongress-mcp-server/0.2.6"
33
+ "default": "libofcongress-mcp-server/0.2.7"
34
34
  },
35
35
  {
36
36
  "name": "LOC_REQUEST_DELAY_MS",
@@ -56,7 +56,7 @@
56
56
  "registryBaseUrl": "https://registry.npmjs.org",
57
57
  "identifier": "@cyanheads/libofcongress-mcp-server",
58
58
  "runtimeHint": "bun",
59
- "version": "0.2.6",
59
+ "version": "0.2.7",
60
60
  "packageArguments": [
61
61
  {
62
62
  "type": "positional",
@@ -73,7 +73,7 @@
73
73
  "description": "User-Agent header sent with LOC API requests. LOC recommends a descriptive value for polite access.",
74
74
  "format": "string",
75
75
  "isRequired": false,
76
- "default": "libofcongress-mcp-server/0.2.6"
76
+ "default": "libofcongress-mcp-server/0.2.7"
77
77
  },
78
78
  {
79
79
  "name": "LOC_REQUEST_DELAY_MS",