@cyanheads/orcid-mcp-server 0.1.3 → 0.1.4
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/README.md +3 -1
- package/changelog/0.1.x/0.1.4.md +25 -0
- package/package.json +22 -7
- package/server.json +3 -3
package/README.md
CHANGED
|
@@ -7,12 +7,14 @@
|
|
|
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
|
|
|
14
14
|
<div align="center">
|
|
15
15
|
|
|
16
|
+
[](https://github.com/cyanheads/orcid-mcp-server/releases/latest/download/orcid-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=orcid-mcp-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjeWFuaGVhZHMvb3JjaWQtbWNwLXNlcnZlciJdfQ==) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22orcid-mcp-server%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cyanheads%2Forcid-mcp-server%22%5D%7D)
|
|
17
|
+
|
|
16
18
|
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
17
19
|
|
|
18
20
|
</div>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Metadata alignment — author, funding, install badges, Docker badge, npm badge, FUNDING.yml"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.4 — 2026-05-26
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- **`.github/FUNDING.yml`** — GitHub Sponsors + Buy Me a Coffee links
|
|
12
|
+
- **`package.json` `funding`** — `github` and `buy_me_a_coffee` entries
|
|
13
|
+
- **`package.json` `author`** — `cyanheads <casey@caseyjhand.com> (…#readme)`
|
|
14
|
+
- **`package.json` `bugs` / `homepage`** — standard npm metadata fields
|
|
15
|
+
- **`package.json` `packageManager`** — `bun@1.3.2`
|
|
16
|
+
- **README install badges** — Claude Desktop (`.mcpb`), Cursor deeplink, VS Code deeplink
|
|
17
|
+
- **README Docker badge** — links to `ghcr.io/cyanheads/orcid-mcp-server`
|
|
18
|
+
- **README npm badge** — links to `npmjs.com/package/@cyanheads/orcid-mcp-server`
|
|
19
|
+
- **Docker image** — multi-arch `linux/amd64` + `linux/arm64` pushed to `ghcr.io/cyanheads/orcid-mcp-server:0.1.4` / `:latest`
|
|
20
|
+
|
|
21
|
+
## Changed
|
|
22
|
+
|
|
23
|
+
- **`package.json` `rebuild` script** — `bun run scripts/clean.ts && bun run scripts/build.ts` → `bun run scripts/clean.ts && bun run build`
|
|
24
|
+
- **`package.json` `bundle` script** — `npm run build` → `bun run build`
|
|
25
|
+
- **`package.json` `start:stdio` / `start:http`** — `node dist/index.js` → `bun ./dist/index.js`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/orcid-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "bun run scripts/build.ts",
|
|
23
|
-
"rebuild": "bun run scripts/clean.ts && bun run
|
|
23
|
+
"rebuild": "bun run scripts/clean.ts && bun run build",
|
|
24
24
|
"clean": "bun run scripts/clean.ts",
|
|
25
25
|
"devcheck": "bun run scripts/devcheck.ts",
|
|
26
26
|
"audit:refresh": "rm -f bun.lock && bun install && bun audit",
|
|
@@ -30,13 +30,12 @@
|
|
|
30
30
|
"lint:mcp": "bun run scripts/lint-mcp.ts",
|
|
31
31
|
"lint:packaging": "bun run scripts/lint-packaging.ts",
|
|
32
32
|
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
|
|
33
|
-
"bundle": "
|
|
33
|
+
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/orcid-mcp-server.mcpb",
|
|
34
34
|
"changelog:build": "bun run scripts/build-changelog.ts",
|
|
35
35
|
"changelog:check": "bun run scripts/build-changelog.ts --check",
|
|
36
|
-
"test": "vitest run",
|
|
37
|
-
"start": "
|
|
38
|
-
"start:
|
|
39
|
-
"start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js"
|
|
36
|
+
"test": "bun run vitest run",
|
|
37
|
+
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
|
|
38
|
+
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js"
|
|
40
39
|
},
|
|
41
40
|
"keywords": [
|
|
42
41
|
"mcp",
|
|
@@ -55,7 +54,23 @@
|
|
|
55
54
|
"type": "git",
|
|
56
55
|
"url": "git+https://github.com/cyanheads/orcid-mcp-server.git"
|
|
57
56
|
},
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/cyanheads/orcid-mcp-server/issues"
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://github.com/cyanheads/orcid-mcp-server#readme",
|
|
61
|
+
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/orcid-mcp-server#readme)",
|
|
62
|
+
"funding": [
|
|
63
|
+
{
|
|
64
|
+
"type": "github",
|
|
65
|
+
"url": "https://github.com/sponsors/cyanheads"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"type": "buy_me_a_coffee",
|
|
69
|
+
"url": "https://www.buymeacoffee.com/cyanheads"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
58
72
|
"license": "Apache-2.0",
|
|
73
|
+
"packageManager": "bun@1.3.2",
|
|
59
74
|
"engines": {
|
|
60
75
|
"bun": ">=1.3.0",
|
|
61
76
|
"node": ">=24.0.0"
|
package/server.json
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/orcid-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.4",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
14
|
"identifier": "@cyanheads/orcid-mcp-server",
|
|
15
15
|
"runtimeHint": "node",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.4",
|
|
17
17
|
"packageArguments": [
|
|
18
18
|
{
|
|
19
19
|
"type": "positional",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
43
43
|
"identifier": "@cyanheads/orcid-mcp-server",
|
|
44
44
|
"runtimeHint": "node",
|
|
45
|
-
"version": "0.1.
|
|
45
|
+
"version": "0.1.4",
|
|
46
46
|
"packageArguments": [
|
|
47
47
|
{
|
|
48
48
|
"type": "positional",
|