@cyanheads/sanctions-screening-mcp-server 0.1.0 → 0.1.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/AGENTS.md +1 -1
- package/CLAUDE.md +1 -1
- package/Dockerfile +5 -2
- package/README.md +2 -2
- package/changelog/0.1.x/0.1.1.md +12 -0
- package/dist/index.js +0 -0
- package/package.json +2 -2
- package/server.json +3 -3
package/AGENTS.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** sanctions-screening-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
4
|
+
**Version:** 0.1.1
|
|
5
5
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.6`
|
|
6
6
|
**Engines:** Bun ≥1.3.0, Node ≥24.0.0
|
|
7
7
|
**MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
|
package/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** sanctions-screening-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
4
|
+
**Version:** 0.1.1
|
|
5
5
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.6`
|
|
6
6
|
**Engines:** Bun ≥1.3.0, Node ≥24.0.0
|
|
7
7
|
**MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
|
package/Dockerfile
CHANGED
|
@@ -11,8 +11,11 @@ WORKDIR /usr/src/app
|
|
|
11
11
|
# Copy dependency manifests for optimized layer caching
|
|
12
12
|
COPY package.json bun.lock ./
|
|
13
13
|
|
|
14
|
-
# Install all dependencies (including dev dependencies for building)
|
|
15
|
-
|
|
14
|
+
# Install all dependencies (including dev dependencies for building).
|
|
15
|
+
# --ignore-scripts skips better-sqlite3's node-gyp native build: the image runs
|
|
16
|
+
# under Bun and the mirror uses bun:sqlite, so the compiled binding is never used,
|
|
17
|
+
# and the TypeScript build only needs the package's type declarations.
|
|
18
|
+
RUN bun install --frozen-lockfile --ignore-scripts
|
|
16
19
|
|
|
17
20
|
# Copy the rest of the source code
|
|
18
21
|
COPY . .
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<h1
|
|
2
|
+
<h1>@cyanheads/sanctions-screening-mcp-server</h1>
|
|
3
3
|
<p><b>Screen names against the consolidated OFAC, EU, UK, and UN sanctions lists and resolve legal entities against GLEIF, fuzzy-matched offline over a local SQLite + FTS5 mirror. A screening aid, not a compliance determination.</b>
|
|
4
4
|
<div>6 Tools • 3 Resources • 1 Prompt</div>
|
|
5
5
|
</p>
|
|
@@ -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
|
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
13
13
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Scope the README title to the published npm name, @cyanheads/sanctions-screening-mcp-server."
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.1 — 2026-06-14
|
|
8
|
+
|
|
9
|
+
## Changed
|
|
10
|
+
|
|
11
|
+
- **README** — the `<h1>` now reads `@cyanheads/sanctions-screening-mcp-server`, matching the published npm package name.
|
|
12
|
+
- **Dependencies** — `better-sqlite3` ^12.4.1 → ^12.10.1.
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/sanctions-screening-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"mcpName": "io.github.cyanheads/sanctions-screening-mcp-server",
|
|
5
5
|
"description": "Screen names against the consolidated OFAC, EU, UK, and UN sanctions lists and resolve legal entities against GLEIF, fuzzy-matched offline over a local SQLite + FTS5 mirror. A screening aid, not a compliance determination.",
|
|
6
6
|
"type": "module",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
},
|
|
103
103
|
"dependencies": {
|
|
104
104
|
"@cyanheads/mcp-ts-core": "^0.10.6",
|
|
105
|
-
"better-sqlite3": "^12.
|
|
105
|
+
"better-sqlite3": "^12.10.1",
|
|
106
106
|
"fast-xml-parser": "^5.8.0",
|
|
107
107
|
"pino-pretty": "^13.1.3",
|
|
108
108
|
"zod": "^4.4.3"
|
package/server.json
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/sanctions-screening-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.1",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
14
|
"identifier": "@cyanheads/sanctions-screening-mcp-server",
|
|
15
15
|
"runtimeHint": "node",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.1",
|
|
17
17
|
"packageArguments": [
|
|
18
18
|
{
|
|
19
19
|
"type": "positional",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
64
64
|
"identifier": "@cyanheads/sanctions-screening-mcp-server",
|
|
65
65
|
"runtimeHint": "node",
|
|
66
|
-
"version": "0.1.
|
|
66
|
+
"version": "0.1.1",
|
|
67
67
|
"packageArguments": [
|
|
68
68
|
{
|
|
69
69
|
"type": "positional",
|