@fdkey/mcp 0.2.0 → 0.2.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/CHANGELOG.md +16 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@fdkey/mcp` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 0.2.1 — 2026-05-10
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
- README now enumerates the `every_minutes` policy variant alongside
|
|
10
|
+
`each_call` / `once_per_session`, with a concrete example.
|
|
11
|
+
- `FdkeyContext` interface is documented field-by-field in the
|
|
12
|
+
"Reading verification context" section so integrators don't have to
|
|
13
|
+
hunt through the type definitions to see what's available.
|
|
14
|
+
- Configuration reference adds `discoveryUrl` (multi-VPS routing) and
|
|
15
|
+
`inlineChallenge` (embed puzzle JSON in blocked-tool errors) — both
|
|
16
|
+
already supported in code, just undocumented.
|
|
17
|
+
|
|
18
|
+
No code changes. Republishing to align registry README with the
|
|
19
|
+
documented surface.
|
|
20
|
+
|
|
5
21
|
## 0.2.0 — 2026-05-09
|
|
6
22
|
|
|
7
23
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -15,7 +15,7 @@ export { LazyVpsRouter as __LazyVpsRouterForTesting };
|
|
|
15
15
|
* on every challenge fetch so we can correlate failures with SDK releases.
|
|
16
16
|
* MUST be kept in sync with package.json version on every release — there's
|
|
17
17
|
* a smoke test that checks this match. */
|
|
18
|
-
const SDK_VERSION = '0.2.
|
|
18
|
+
const SDK_VERSION = '0.2.1';
|
|
19
19
|
/** Default VPS URL used when no `vpsUrl` and no `discoveryUrl` are provided. */
|
|
20
20
|
const DEFAULT_VPS_URL = 'https://api.fdkey.com';
|
|
21
21
|
/** Lazy wrapper around the multi-VPS `VpsRouter`. Defers `await import('./vps-router.js')`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fdkey/mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "FDKEY verification middleware for MCP servers — gate AI-agent access behind LLM-only puzzles. Runs on Node 18+, Cloudflare Workers, Bun, and Deno.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|