@cyanheads/orcid-mcp-server 0.2.0 → 0.2.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/CLAUDE.md +6 -2
- package/README.md +6 -6
- package/changelog/0.2.x/0.2.1.md +18 -0
- package/package.json +4 -3
- package/server.json +3 -3
package/CLAUDE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** orcid-mcp-server
|
|
4
|
-
**Version:** 0.2.
|
|
5
|
-
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.
|
|
4
|
+
**Version:** 0.2.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
|
|
@@ -279,6 +279,7 @@ Available skills:
|
|
|
279
279
|
| `git-wrapup` | Land working-tree changes as a versioned commit + annotated tag — version bump, changelog, verify, tag. Local only. |
|
|
280
280
|
| `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
|
|
281
281
|
| `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
|
|
282
|
+
| `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
|
|
282
283
|
| `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
|
|
283
284
|
| `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
|
|
284
285
|
| `api-auth` | Auth modes, scopes, JWT/OAuth |
|
|
@@ -293,6 +294,8 @@ Available skills:
|
|
|
293
294
|
| `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
|
|
294
295
|
| `api-workers` | Cloudflare Workers runtime |
|
|
295
296
|
|
|
297
|
+
**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.
|
|
298
|
+
|
|
296
299
|
When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
|
|
297
300
|
|
|
298
301
|
---
|
|
@@ -316,6 +319,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
|
|
|
316
319
|
| `npm run start:http` | Production mode (HTTP) |
|
|
317
320
|
| `npm run changelog:build` | Regenerate `CHANGELOG.md` from `changelog/*.md` |
|
|
318
321
|
| `npm run changelog:check` | Verify `CHANGELOG.md` is in sync (used by devcheck) |
|
|
322
|
+
| `npm run release:github` | Create GitHub Release from the current annotated tag |
|
|
319
323
|
| `npm run bundle` | Build and pack as `.mcpb` for one-click Claude Desktop install |
|
|
320
324
|
|
|
321
325
|
---
|
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<h1>@cyanheads/orcid-mcp-server</h1>
|
|
3
3
|
<p><b>Search and retrieve researcher profiles, works, affiliations, funding, and peer review records from the ORCID registry via MCP. STDIO or Streamable HTTP.</b>
|
|
4
|
-
<div>
|
|
4
|
+
<div>9 Tools • 2 Resources</div>
|
|
5
5
|
</p>
|
|
6
6
|
</div>
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/orcid-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/orcid-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -179,7 +179,7 @@ A public instance is available at `https://orcid.caseyjhand.com/mcp` — no inst
|
|
|
179
179
|
```json
|
|
180
180
|
{
|
|
181
181
|
"mcpServers": {
|
|
182
|
-
"orcid": {
|
|
182
|
+
"orcid-mcp-server": {
|
|
183
183
|
"type": "streamable-http",
|
|
184
184
|
"url": "https://orcid.caseyjhand.com/mcp"
|
|
185
185
|
}
|
|
@@ -194,7 +194,7 @@ Add the following to your MCP client configuration file. No API key is required
|
|
|
194
194
|
```json
|
|
195
195
|
{
|
|
196
196
|
"mcpServers": {
|
|
197
|
-
"orcid": {
|
|
197
|
+
"orcid-mcp-server": {
|
|
198
198
|
"type": "stdio",
|
|
199
199
|
"command": "bunx",
|
|
200
200
|
"args": ["@cyanheads/orcid-mcp-server@latest"],
|
|
@@ -212,7 +212,7 @@ Or with npx (no Bun required):
|
|
|
212
212
|
```json
|
|
213
213
|
{
|
|
214
214
|
"mcpServers": {
|
|
215
|
-
"orcid": {
|
|
215
|
+
"orcid-mcp-server": {
|
|
216
216
|
"type": "stdio",
|
|
217
217
|
"command": "npx",
|
|
218
218
|
"args": ["-y", "@cyanheads/orcid-mcp-server@latest"],
|
|
@@ -230,7 +230,7 @@ Or with Docker:
|
|
|
230
230
|
```json
|
|
231
231
|
{
|
|
232
232
|
"mcpServers": {
|
|
233
|
-
"orcid": {
|
|
233
|
+
"orcid-mcp-server": {
|
|
234
234
|
"type": "stdio",
|
|
235
235
|
"command": "docker",
|
|
236
236
|
"args": [
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Adopt @cyanheads/mcp-ts-core 0.9.21 — per-request log context fix, secret-stripped error messages, withRetry fail-fast; sync skills and scripts"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
agent-notes: |
|
|
6
|
+
Framework bumped from ^0.9.16 to ^0.9.21. New scripts: scripts/release-github.ts, scripts/check-skill-versions.ts. New skills: skills/api-mirror, skills/orchestrations. Existing skills updated.
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# 0.2.1 — 2026-06-02
|
|
10
|
+
|
|
11
|
+
## Changed
|
|
12
|
+
|
|
13
|
+
- **`@cyanheads/mcp-ts-core`** `^0.9.16` → `^0.9.21` — adopts three framework fixes: per-request logs and traces carry fresh request + trace/span IDs instead of the frozen boot context; `fetchWithTimeout` strips query-string secrets (e.g. `?api_key=`) from error messages and logs; `withRetry` fails fast on non-retryable errors and `ctx.fail` auto-populates the `retryable` flag.
|
|
14
|
+
- **`vitest`** `^4.1.7` → `^4.1.8`
|
|
15
|
+
- **Skills** — 8 updated (`add-service`, `add-tool`, `api-canvas`, `api-context`, `api-linter`, `api-utils`, `design-mcp-server`, `release-and-publish`); 2 new (`api-mirror`, `orchestrations`).
|
|
16
|
+
- **`scripts/release-github.ts`** — new script wired to `release:github` for creating GitHub Releases from annotated tags.
|
|
17
|
+
- **`scripts/check-skill-versions.ts`** — new script wired to `devcheck` for verifying skill version alignment.
|
|
18
|
+
- **README client-config keys** — renamed from `"orcid"` to `"orcid-mcp-server"` to match the full package name convention.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/orcid-mcp-server",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"mcpName": "io.github.cyanheads/orcid-mcp-server",
|
|
5
5
|
"description": "Search and retrieve researcher profiles, works, affiliations, funding, and peer review records from the ORCID registry via MCP. STDIO or Streamable HTTP.",
|
|
6
6
|
"type": "module",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/orcid-mcp-server.mcpb",
|
|
35
35
|
"changelog:build": "bun run scripts/build-changelog.ts",
|
|
36
36
|
"changelog:check": "bun run scripts/build-changelog.ts --check",
|
|
37
|
+
"release:github": "bun run scripts/release-github.ts",
|
|
37
38
|
"test": "bun run vitest run",
|
|
38
39
|
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
|
|
39
40
|
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js"
|
|
@@ -84,7 +85,7 @@
|
|
|
84
85
|
"access": "public"
|
|
85
86
|
},
|
|
86
87
|
"dependencies": {
|
|
87
|
-
"@cyanheads/mcp-ts-core": "^0.9.
|
|
88
|
+
"@cyanheads/mcp-ts-core": "^0.9.21",
|
|
88
89
|
"pino-pretty": "^13.1.3",
|
|
89
90
|
"zod": "^4.4.3"
|
|
90
91
|
},
|
|
@@ -95,6 +96,6 @@
|
|
|
95
96
|
"ignore": "^7.0.5",
|
|
96
97
|
"tsc-alias": "^1.8.17",
|
|
97
98
|
"typescript": "^6.0.3",
|
|
98
|
-
"vitest": "^4.1.
|
|
99
|
+
"vitest": "^4.1.8"
|
|
99
100
|
}
|
|
100
101
|
}
|
package/server.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/orcid-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.2.
|
|
9
|
+
"version": "0.2.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/orcid-mcp-server",
|
|
21
21
|
"runtimeHint": "node",
|
|
22
|
-
"version": "0.2.
|
|
22
|
+
"version": "0.2.1",
|
|
23
23
|
"packageArguments": [
|
|
24
24
|
{
|
|
25
25
|
"type": "positional",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
49
49
|
"identifier": "@cyanheads/orcid-mcp-server",
|
|
50
50
|
"runtimeHint": "node",
|
|
51
|
-
"version": "0.2.
|
|
51
|
+
"version": "0.2.1",
|
|
52
52
|
"packageArguments": [
|
|
53
53
|
{
|
|
54
54
|
"type": "positional",
|