@cyanheads/orcid-mcp-server 0.1.1 → 0.1.2
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 +1 -1
- package/README.md +1 -1
- package/changelog/0.1.x/0.1.2.md +15 -0
- package/dist/services/orcid/orcid-service.js +1 -1
- package/package.json +3 -1
- package/server.json +4 -4
package/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** orcid-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
4
|
+
**Version:** 0.1.2
|
|
5
5
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.9`
|
|
6
6
|
**Engines:** Bun ≥1.3.0, Node ≥24.0.0
|
|
7
7
|
**MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://modelcontextprotocol.io/) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Add mcpName field for MCP Registry publishing; trim server.json description to 100-char limit"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.2 — 2026-05-25
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- **`mcpName`** field in `package.json` — required for MCP Registry publishing (`io.github.cyanheads/orcid-mcp-server`)
|
|
12
|
+
|
|
13
|
+
## Fixed
|
|
14
|
+
|
|
15
|
+
- **`server.json` description** trimmed to ≤100 chars to pass MCP Registry validation
|
|
@@ -20,7 +20,7 @@ export class OrcidService {
|
|
|
20
20
|
headers() {
|
|
21
21
|
return {
|
|
22
22
|
Accept: 'application/json',
|
|
23
|
-
'User-Agent': 'orcid-mcp-server/0.1.
|
|
23
|
+
'User-Agent': 'orcid-mcp-server/0.1.2 (https://github.com/cyanheads/orcid-mcp-server)',
|
|
24
24
|
};
|
|
25
25
|
}
|
|
26
26
|
/** Detect HTML error pages masquerading as JSON responses (rate-limit or maintenance pages). */
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/orcid-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"mcpName": "io.github.cyanheads/orcid-mcp-server",
|
|
4
5
|
"description": "Search and retrieve researcher profiles, works, affiliations, funding, and peer review records from the ORCID registry via MCP. STDIO or Streamable HTTP.",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
|
@@ -28,6 +29,7 @@
|
|
|
28
29
|
"format": "biome check --write --unsafe .",
|
|
29
30
|
"lint:mcp": "tsx scripts/lint-mcp.ts",
|
|
30
31
|
"lint:packaging": "tsx scripts/lint-packaging.ts",
|
|
32
|
+
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
|
|
31
33
|
"bundle": "npm run build && npx -y @anthropic-ai/mcpb pack . dist/orcid-mcp-server.mcpb",
|
|
32
34
|
"changelog:build": "tsx scripts/build-changelog.ts",
|
|
33
35
|
"changelog:check": "tsx scripts/build-changelog.ts --check",
|
package/server.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.cyanheads/orcid-mcp-server",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Researcher profiles, works, affiliations, funding, and peer reviews from the ORCID registry.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/cyanheads/orcid-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.2",
|
|
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.2",
|
|
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.2",
|
|
46
46
|
"packageArguments": [
|
|
47
47
|
{
|
|
48
48
|
"type": "positional",
|