@cyanheads/sanctions-screening-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/AGENTS.md +1 -1
- package/CLAUDE.md +1 -1
- package/README.md +26 -1
- package/changelog/0.1.x/0.1.2.md +17 -0
- package/dist/index.js +0 -0
- package/package.json +3 -3
- package/server.json +9 -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.2
|
|
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.2
|
|
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/README.md
CHANGED
|
@@ -7,12 +7,20 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://modelcontextprotocol.io/) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
|
+
|
|
12
|
+
[](https://github.com/cyanheads/sanctions-screening-mcp-server/releases/latest/download/sanctions-screening-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=sanctions-screening-mcp-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjeWFuaGVhZHMvc2FuY3Rpb25zLXNjcmVlbmluZy1tY3Atc2VydmVyIl19) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22sanctions-screening-mcp-server%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cyanheads%2Fsanctions-screening-mcp-server%22%5D%7D)
|
|
11
13
|
|
|
12
14
|
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
13
15
|
|
|
14
16
|
</div>
|
|
15
17
|
|
|
18
|
+
<div align="center">
|
|
19
|
+
|
|
20
|
+
**Public Hosted Server:** [https://sanctions-screening.caseyjhand.com/mcp](https://sanctions-screening.caseyjhand.com/mcp)
|
|
21
|
+
|
|
22
|
+
</div>
|
|
23
|
+
|
|
16
24
|
---
|
|
17
25
|
|
|
18
26
|
> [!IMPORTANT]
|
|
@@ -170,6 +178,23 @@ Agent-friendly output:
|
|
|
170
178
|
|
|
171
179
|
## Getting started
|
|
172
180
|
|
|
181
|
+
### Public Hosted Instance
|
|
182
|
+
|
|
183
|
+
A public instance is available at `https://sanctions-screening.caseyjhand.com/mcp` — no installation required. Point any MCP client at it via Streamable HTTP, with this client config:
|
|
184
|
+
|
|
185
|
+
```json
|
|
186
|
+
{
|
|
187
|
+
"mcpServers": {
|
|
188
|
+
"sanctions-screening-mcp-server": {
|
|
189
|
+
"type": "streamable-http",
|
|
190
|
+
"url": "https://sanctions-screening.caseyjhand.com/mcp"
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
### Self-hosted / local
|
|
197
|
+
|
|
173
198
|
Add the following to your MCP client configuration file. The server is offline-first — populate the mirror with `bun run mirror:init` before screening (see [Source lists](#source-lists)).
|
|
174
199
|
|
|
175
200
|
```json
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Public hosted endpoint at https://sanctions-screening.caseyjhand.com/mcp"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.2 — 2026-06-15
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- **Public hosted instance** at `https://sanctions-screening.caseyjhand.com/mcp` — Streamable HTTP, no installation required; client config added to README.
|
|
12
|
+
- **`server.json` `remotes`** array with the hosted Streamable HTTP endpoint for MCP Registry discovery.
|
|
13
|
+
|
|
14
|
+
## Changed
|
|
15
|
+
|
|
16
|
+
- `fast-xml-parser` ^5.8.0 → ^5.9.0
|
|
17
|
+
- `vitest` ^4.1.8 → ^4.1.9 (dev)
|
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.2",
|
|
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",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"dependencies": {
|
|
104
104
|
"@cyanheads/mcp-ts-core": "^0.10.6",
|
|
105
105
|
"better-sqlite3": "^12.10.1",
|
|
106
|
-
"fast-xml-parser": "^5.
|
|
106
|
+
"fast-xml-parser": "^5.9.0",
|
|
107
107
|
"pino-pretty": "^13.1.3",
|
|
108
108
|
"zod": "^4.4.3"
|
|
109
109
|
},
|
|
@@ -114,6 +114,6 @@
|
|
|
114
114
|
"ignore": "^7.0.5",
|
|
115
115
|
"tsc-alias": "^1.8.17",
|
|
116
116
|
"typescript": "^6.0.3",
|
|
117
|
-
"vitest": "^4.1.
|
|
117
|
+
"vitest": "^4.1.9"
|
|
118
118
|
}
|
|
119
119
|
}
|
package/server.json
CHANGED
|
@@ -6,14 +6,20 @@
|
|
|
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.2",
|
|
10
|
+
"remotes": [
|
|
11
|
+
{
|
|
12
|
+
"type": "streamable-http",
|
|
13
|
+
"url": "https://sanctions-screening.caseyjhand.com/mcp"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
10
16
|
"packages": [
|
|
11
17
|
{
|
|
12
18
|
"registryType": "npm",
|
|
13
19
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
20
|
"identifier": "@cyanheads/sanctions-screening-mcp-server",
|
|
15
21
|
"runtimeHint": "node",
|
|
16
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.2",
|
|
17
23
|
"packageArguments": [
|
|
18
24
|
{
|
|
19
25
|
"type": "positional",
|
|
@@ -63,7 +69,7 @@
|
|
|
63
69
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
64
70
|
"identifier": "@cyanheads/sanctions-screening-mcp-server",
|
|
65
71
|
"runtimeHint": "node",
|
|
66
|
-
"version": "0.1.
|
|
72
|
+
"version": "0.1.2",
|
|
67
73
|
"packageArguments": [
|
|
68
74
|
{
|
|
69
75
|
"type": "positional",
|