@cyanheads/ensembl-mcp-server 0.1.4 → 0.1.5
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 +2 -2
- package/CLAUDE.md +2 -2
- package/README.md +1 -1
- package/changelog/0.1.x/0.1.5.md +28 -0
- package/package.json +5 -5
- package/server.json +3 -3
package/AGENTS.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** ensembl-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
5
|
-
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.
|
|
4
|
+
**Version:** 0.1.5
|
|
5
|
+
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.9`
|
|
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
|
package/CLAUDE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** ensembl-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
5
|
-
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.
|
|
4
|
+
**Version:** 0.1.5
|
|
5
|
+
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.9`
|
|
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
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/ensembl-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/ensembl-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "mcp-ts-core ^0.10.6 → ^0.10.9; new check-dependency-specifiers devcheck gate; plugin-manifest packaging checks; fresh-scaffold/worktree devcheck guards; 14 skills re-synced; biome 2.5 + dep refresh"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.5 — 2026-06-20
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- **`scripts/check-dependency-specifiers.ts`** — new `devcheck` step (`Dependency Specifiers`, flag `--no-dep-specifiers`) that hard-fails on floating specifiers (`latest`, `*`, pre-release dist-tags) in `package.json`'s dependency sections and `bun.lock`'s `workspaces` map. Catches `bun update --latest` writing a literal `latest` dist-tag into the lock — correct at write time, then re-resolving past the `package.json` range on the next install. ([#246](https://github.com/cyanheads/mcp-ts-core/issues/246))
|
|
12
|
+
- **Plugin-manifest packaging checks** — `scripts/lint-packaging.ts` now validates `.claude-plugin/plugin.json` and `.codex-plugin/plugin.json` (non-empty descriptions, unscoped machine name in display fields, full `package.json` name in the install arg). Gated by the new `devcheck.config.json` `packaging.pluginManifests` flag; the `devcheck` Packaging gate now runs whenever a plugin manifest is present, not only when `manifest.json` exists. ([#240](https://github.com/cyanheads/mcp-ts-core/issues/240))
|
|
13
|
+
|
|
14
|
+
## Changed
|
|
15
|
+
|
|
16
|
+
- **`@cyanheads/mcp-ts-core`** `^0.10.6` → `^0.10.9` — framework maintenance adoption.
|
|
17
|
+
- **`.codex-plugin/plugin.json`** — populated the empty `interface.longDescription` with a full server overview (tools, resources, the `ensembl_gene_dossier` prompt, species naming, `ENSEMBL_BASE_URL`).
|
|
18
|
+
- **`scripts/devcheck.ts`** — git-dependent checks (TODOs/FIXMEs, Tracked Secrets, Framework Antipatterns) now skip via a shared `isGitRepo()` guard when `.git` is absent, instead of failing on `git grep`/`git ls-files` exit 128. ([#243](https://github.com/cyanheads/mcp-ts-core/issues/243))
|
|
19
|
+
- **`scripts/build-changelog.ts`** — under `--check`, exits cleanly when no `<major.minor>.x/` version files exist yet (fresh scaffold), rather than throwing. ([#242](https://github.com/cyanheads/mcp-ts-core/issues/242))
|
|
20
|
+
- **`scripts/check-skill-versions.ts`** — skips a `SKILL.md` deleted from the worktree (`existsSync` guard) instead of crashing with ENOENT on maintenance passes that prune an upstream-removed skill. ([#237](https://github.com/cyanheads/mcp-ts-core/issues/237))
|
|
21
|
+
- **`scripts/check-framework-antipatterns.ts`** — self-guards for direct invocation outside a git repo.
|
|
22
|
+
- **Skills** — 14 `SKILL.md` files re-synced to the framework `^0.10.9` set, including seven `metadata.version` bumps propagating body drift ([#238](https://github.com/cyanheads/mcp-ts-core/issues/238)) and the `api-context` `ctx.content` collector reference ([#239](https://github.com/cyanheads/mcp-ts-core/issues/239)).
|
|
23
|
+
|
|
24
|
+
### Dependency bumps
|
|
25
|
+
|
|
26
|
+
- `@biomejs/biome` `^2.4.16` → `^2.5.0`
|
|
27
|
+
- `@types/node` `^25.9.3` → `^26.0.0`
|
|
28
|
+
- `vitest` `^4.1.8` → `^4.1.9`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/ensembl-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"mcpName": "io.github.cyanheads/ensembl-mcp-server",
|
|
5
5
|
"description": "Look up genes, fetch sequences, predict variant consequences, find orthologs and cross-database xrefs via Ensembl REST via MCP. STDIO or Streamable HTTP.",
|
|
6
6
|
"type": "module",
|
|
@@ -90,17 +90,17 @@
|
|
|
90
90
|
"access": "public"
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
|
-
"@cyanheads/mcp-ts-core": "^0.10.
|
|
93
|
+
"@cyanheads/mcp-ts-core": "^0.10.9",
|
|
94
94
|
"pino-pretty": "^13.1.3",
|
|
95
95
|
"zod": "^4.4.3"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
|
-
"@biomejs/biome": "^2.
|
|
99
|
-
"@types/node": "^
|
|
98
|
+
"@biomejs/biome": "^2.5.0",
|
|
99
|
+
"@types/node": "^26.0.0",
|
|
100
100
|
"depcheck": "^1.4.7",
|
|
101
101
|
"ignore": "^7.0.5",
|
|
102
102
|
"tsc-alias": "^1.8.17",
|
|
103
103
|
"typescript": "^6.0.3",
|
|
104
|
-
"vitest": "^4.1.
|
|
104
|
+
"vitest": "^4.1.9"
|
|
105
105
|
}
|
|
106
106
|
}
|
package/server.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/ensembl-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.5",
|
|
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/ensembl-mcp-server",
|
|
21
21
|
"runtimeHint": "bun",
|
|
22
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.5",
|
|
23
23
|
"packageArguments": [
|
|
24
24
|
{
|
|
25
25
|
"type": "positional",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
56
56
|
"identifier": "@cyanheads/ensembl-mcp-server",
|
|
57
57
|
"runtimeHint": "bun",
|
|
58
|
-
"version": "0.1.
|
|
58
|
+
"version": "0.1.5",
|
|
59
59
|
"packageArguments": [
|
|
60
60
|
{
|
|
61
61
|
"type": "positional",
|