freshcontext-mcp 0.3.22 → 0.3.23
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/README.md +1 -1
- package/dist/rest/handler.js +1 -1
- package/dist/server.js +1 -1
- package/docs/CLIENT_SETUP.md +1 -1
- package/docs/CODEX_MCP_USAGE.md +1 -1
- package/docs/CORE_MCP_BOUNDARY.md +1 -1
- package/docs/FUTURE_LANES.md +1 -1
- package/package.json +1 -1
- package/server.json +27 -27
package/README.md
CHANGED
|
@@ -170,7 +170,7 @@ FreshContext does not certify truth. It records why context was used, supported,
|
|
|
170
170
|
|
|
171
171
|
`evaluate_context` does not fetch URLs, crawl, scrape, browse, read folders, or call adapters. It only evaluates candidate context the caller provides.
|
|
172
172
|
|
|
173
|
-
Current boundary: `evaluate_context` is part of the npm/local stdio MCP server prepared for `0.3.22`. The hosted Cloudflare Worker MCP endpoint was last verified separately at `0.3.
|
|
173
|
+
Current boundary: `evaluate_context` is part of the npm/local stdio MCP server prepared for `0.3.22`. The hosted Cloudflare Worker MCP endpoint was last verified separately at `0.3.22 / 22 tools`. The Worker remains a separate deployment surface, so future package interfaces should be re-verified remotely before being claimed live.
|
|
174
174
|
|
|
175
175
|
### Network Boundary
|
|
176
176
|
|
package/dist/rest/handler.js
CHANGED
package/dist/server.js
CHANGED
|
@@ -23,7 +23,7 @@ import { EvaluateContextInputError, evaluateContextInput, formatEvaluateContextR
|
|
|
23
23
|
import { formatSecurityError } from "./security.js";
|
|
24
24
|
const server = new McpServer({
|
|
25
25
|
name: "freshcontext-mcp",
|
|
26
|
-
version: "0.3.
|
|
26
|
+
version: "0.3.23",
|
|
27
27
|
});
|
|
28
28
|
const signalInputSchema = z.object({
|
|
29
29
|
id: z.string().optional(),
|
package/docs/CLIENT_SETUP.md
CHANGED
|
@@ -132,7 +132,7 @@ Some clients can use `mcp-remote`:
|
|
|
132
132
|
}
|
|
133
133
|
```
|
|
134
134
|
|
|
135
|
-
The npm/local stdio package remains the safest default client path. The hosted Worker endpoint was last verified on 2026-06-14 at `0.3.
|
|
135
|
+
The npm/local stdio package remains the safest default client path. The hosted Worker endpoint was last verified on 2026-06-14 at `0.3.22 / 22 tools` with `evaluate_context` present and returning decision-first output, including `provenance_readiness`, `readable`, and `readable.handoff`. Because the Worker is a separate deployment surface, re-run remote verification before claiming future package interfaces are live there.
|
|
136
136
|
|
|
137
137
|
## ChatGPT / OpenAI Connector Boundary
|
|
138
138
|
|
package/docs/CODEX_MCP_USAGE.md
CHANGED
|
@@ -67,7 +67,7 @@ command = "npx"
|
|
|
67
67
|
args = ["-y", "mcp-remote", "https://freshcontext-mcp.gimmanuel73.workers.dev/mcp"]
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
This remote path was last verified on 2026-06-14 as a live Worker MCP endpoint exposing `0.3.
|
|
70
|
+
This remote path was last verified on 2026-06-14 as a live Worker MCP endpoint exposing `0.3.22 / 22 tools`, including `evaluate_context`, `provenance_readiness`, `readable`, and `readable.handoff`. That confirms Worker availability and MCP tool discovery. It does not by itself claim Codex Cloud support or guarantee every MCP client can use the remote bridge without its own client-specific setup check.
|
|
71
71
|
|
|
72
72
|
## Verification steps
|
|
73
73
|
|
|
@@ -50,7 +50,7 @@ Worker/site surfaces own deployment concerns:
|
|
|
50
50
|
|
|
51
51
|
Live today:
|
|
52
52
|
|
|
53
|
-
- npm package: `freshcontext-mcp@0.3.
|
|
53
|
+
- npm package: `freshcontext-mcp@0.3.22`
|
|
54
54
|
- MCP stdio server and published binary: `freshcontext-mcp`
|
|
55
55
|
- Core subpath export: `freshcontext-mcp/core`
|
|
56
56
|
- `evaluate_context` MCP tool for caller-provided candidate context
|
package/docs/FUTURE_LANES.md
CHANGED
|
@@ -10,7 +10,7 @@ The current package boundary is documented in [Core / MCP Boundary](./CORE_MCP_B
|
|
|
10
10
|
|
|
11
11
|
Live today:
|
|
12
12
|
|
|
13
|
-
- npm package: `freshcontext-mcp@0.3.
|
|
13
|
+
- npm package: `freshcontext-mcp@0.3.22`
|
|
14
14
|
- MCP stdio server
|
|
15
15
|
- `evaluate_context` MCP tool for caller-provided candidate context
|
|
16
16
|
- Signal Contract v1 as the stable candidate-context input shape
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "freshcontext-mcp",
|
|
3
3
|
"mcpName": "io.github.PrinceGabriel-lgtm/freshcontext",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.23",
|
|
5
5
|
"description": "Context integrity infrastructure for AI agents and retrieval systems. Score, explain, and wrap candidate context before it reaches the model.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"mcp",
|
package/server.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
|
|
3
|
-
"name": "io.github.PrinceGabriel-lgtm/freshcontext",
|
|
4
|
-
"description": "Context integrity infrastructure for AI agents and retrieval systems. Evaluates caller-provided and adapter-sourced context before it reaches the model.",
|
|
5
|
-
"repository": {
|
|
6
|
-
"url": "https://github.com/PrinceGabriel-lgtm/freshcontext-mcp",
|
|
7
|
-
"source": "github"
|
|
8
|
-
},
|
|
9
|
-
"version": "0.3.
|
|
10
|
-
"website_url": "https://freshcontext-site.pages.dev",
|
|
11
|
-
"packages": [
|
|
12
|
-
{
|
|
13
|
-
"registryType": "npm",
|
|
14
|
-
"identifier": "freshcontext-mcp",
|
|
15
|
-
"version": "0.3.
|
|
16
|
-
"transport": {
|
|
17
|
-
"type": "stdio"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
],
|
|
21
|
-
"remotes": [
|
|
22
|
-
{
|
|
23
|
-
"type": "streamable-http",
|
|
24
|
-
"url": "https://freshcontext-mcp.gimmanuel73.workers.dev/mcp"
|
|
25
|
-
}
|
|
26
|
-
]
|
|
27
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
|
|
3
|
+
"name": "io.github.PrinceGabriel-lgtm/freshcontext",
|
|
4
|
+
"description": "Context integrity infrastructure for AI agents and retrieval systems. Evaluates caller-provided and adapter-sourced context before it reaches the model.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/PrinceGabriel-lgtm/freshcontext-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "0.3.23",
|
|
10
|
+
"website_url": "https://freshcontext-site.pages.dev",
|
|
11
|
+
"packages": [
|
|
12
|
+
{
|
|
13
|
+
"registryType": "npm",
|
|
14
|
+
"identifier": "freshcontext-mcp",
|
|
15
|
+
"version": "0.3.23",
|
|
16
|
+
"transport": {
|
|
17
|
+
"type": "stdio"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"remotes": [
|
|
22
|
+
{
|
|
23
|
+
"type": "streamable-http",
|
|
24
|
+
"url": "https://freshcontext-mcp.gimmanuel73.workers.dev/mcp"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|