freshcontext-mcp 0.3.16 → 0.3.18
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/.env.example +3 -0
- package/LICENSE +21 -0
- package/NOTICE.md +17 -0
- package/README.md +395 -296
- package/SECURITY.md +34 -0
- package/TRADEMARKS.md +9 -0
- package/dist/adapters/arxiv.js +92 -48
- package/dist/adapters/finance.js +87 -101
- package/dist/adapters/gdelt.js +1 -1
- package/dist/adapters/gebiz.js +1 -1
- package/dist/adapters/hackernews.js +59 -29
- package/dist/adapters/productHunt.js +8 -4
- package/dist/adapters/registry.js +232 -0
- package/dist/adapters/repoSearch.js +1 -1
- package/dist/adapters/secFilings.js +1 -1
- package/dist/core/decay.js +61 -0
- package/dist/core/decision.js +176 -0
- package/dist/core/envelope.js +59 -0
- package/dist/core/explain.js +28 -0
- package/dist/core/guards.js +17 -0
- package/dist/core/index.js +11 -0
- package/dist/core/pipeline.js +101 -0
- package/dist/core/provenance.js +73 -0
- package/dist/core/rank.js +84 -0
- package/dist/core/signal.js +101 -0
- package/dist/core/sourceProfiles.js +126 -0
- package/dist/core/types.js +1 -0
- package/dist/core/utility.js +90 -0
- package/dist/rest/handler.js +126 -0
- package/dist/security.js +1 -1
- package/dist/server.js +10 -10
- package/dist/tools/freshnessStamp.js +1 -117
- package/dist/types.js +0 -1
- package/docs/API_DESIGN.md +434 -0
- package/docs/CODEX_MCP_USAGE.md +116 -0
- package/docs/CORE_API.md +224 -0
- package/docs/DEPENDENCY_DILIGENCE.md +63 -0
- package/docs/HA_PRI_V2_DESIGN.md +279 -0
- package/docs/OPERATIONAL_DEMO_RUNBOOK.md +458 -0
- package/docs/RELEASE_INTEGRITY.md +53 -0
- package/docs/RELEASE_NOTES.md +38 -0
- package/docs/SIGNAL_CONTRACT.md +89 -0
- package/docs/SOURCE_PROFILES.md +427 -0
- package/freshcontext.schema.json +103 -103
- package/package-script-guard.mjs +140 -0
- package/package.json +92 -52
- package/server.json +27 -28
- package/.github/workflows/publish.yml +0 -32
- package/RESEARCH.md +0 -487
- package/RISKS.md +0 -137
- package/cleanup.ps1 +0 -99
- package/demo/README.md +0 -70
- package/demo/data.json +0 -88
- package/demo/generate.mjs +0 -199
- package/demo/index.html +0 -513
- package/demo/logo-export.html +0 -61
- package/demo/logo.svg +0 -23
- package/dist/apify.js +0 -133
- package/freshcontext-validate.js +0 -196
- package/time-check.ps1 +0 -46
package/README.md
CHANGED
|
@@ -1,296 +1,395 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
I asked Claude to help me find a job. It gave me a list of openings. I applied to three of them. Two didn't exist anymore. One had been closed for two years.
|
|
4
|
-
|
|
5
|
-
Claude had no idea. It presented everything with the same confidence.
|
|
6
|
-
|
|
7
|
-
That's the problem freshcontext fixes.
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
[](https://www.npmjs.com/package/freshcontext-mcp)
|
|
12
|
+
[](https://opensource.org/licenses/MIT)
|
|
13
|
+
[](https://registry.modelcontextprotocol.io)
|
|
14
|
+
|
|
15
|
+
> **Live demo:** [freshcontext-mcp.gimmanuel73.workers.dev/demo](https://freshcontext-mcp.gimmanuel73.workers.dev/demo) — same model, same query, two completely different answers. Only the temporal layer changed.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## The problem
|
|
20
|
+
|
|
21
|
+
Large language models retrieve web data semantically. Cosine similarity finds the documents that match a query best — but cosine doesn't know when a document was written.
|
|
22
|
+
|
|
23
|
+
So a 2022 blog post and a 2026 paper can score nearly identically. The model gets a context window full of stale documents and faithfully summarizes 2022 advice for a 2026 question.
|
|
24
|
+
|
|
25
|
+
That's not hallucination. That's correct summarization of corrupted retrieval.
|
|
26
|
+
|
|
27
|
+
> **Most RAG pipelines rank context correctly semantically but incorrectly temporally.**
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## The layer
|
|
32
|
+
|
|
33
|
+
FreshContext is a **temporal correction layer for retrieval systems**. One math correction applied before context reaches the LLM:
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
R_t = R_0 · e^(−λt)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
- `R_0` — base semantic relevancy (whatever your retriever already gives you)
|
|
40
|
+
- `λ` — source-specific decay constant (HN ≈14h half-life, blogs ≈29d, academic papers ≈1.6y)
|
|
41
|
+
- `t` — hours elapsed since publication
|
|
42
|
+
- `R_t` — decay-adjusted relevancy at query time
|
|
43
|
+
|
|
44
|
+
That's the whole fix. No model swap. No re-embedding. No re-indexing. The layer drops onto whatever retrieval pipeline you already have.
|
|
45
|
+
|
|
46
|
+
**The layer is the product.** The 21 tools shipped with this repo are reference adapters demonstrating compatibility — useful, but commodity. The DAR engine, the freshness envelope, and the FreshContext Specification are the moat.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## The standard
|
|
51
|
+
|
|
52
|
+
Every FreshContext-compatible response wraps content in a structured envelope:
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
[FRESHCONTEXT]
|
|
56
|
+
Source: https://github.com/owner/repo
|
|
57
|
+
Published: 2024-11-03
|
|
58
|
+
Retrieved: 2026-03-05T09:19:00Z
|
|
59
|
+
Confidence: high
|
|
60
|
+
---
|
|
61
|
+
... content ...
|
|
62
|
+
[/FRESHCONTEXT]
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
**When** it was retrieved. **Where** it came from. **How confident** we are the date is accurate.
|
|
66
|
+
|
|
67
|
+
The FreshContext Specification v1.2 is published as an open standard under MIT licence. Any tool, agent, or system that wraps retrieved data in this envelope is FreshContext-compatible. → [Read the spec](./FRESHCONTEXT_SPEC.md) · [Read the methodology](./METHODOLOGY.md)
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## Architecture boundary
|
|
72
|
+
|
|
73
|
+
FreshContext Core is the reusable center of the current integrated package. It owns freshness scoring, envelope formatting, failure guards, shared types, rank/explain primitives, and the context-conditioned utility primitive.
|
|
74
|
+
|
|
75
|
+
MCP is the primary reference/interface implementation over Core. Claude Desktop is supported, but not required. The 21 MCP tools in this repo are reference adapters and a live interface for using the system.
|
|
76
|
+
|
|
77
|
+
The production Cloudflare Worker now uses Core-backed envelope generation. Worker-specific concerns remain outside Core: MCP transport, runtime guards, KV cache policy, cache metadata injection, JSON parse/replace cache helpers, D1 feeds, cron, rate limiting, and Store/feed scoring/provenance.
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## The intelligence feed
|
|
82
|
+
|
|
83
|
+
Beyond the per-call envelope, the production FreshContext deployment exposes a continuous, decay-scored, deduplicated feed:
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
GET /v1/intel/feed/:profile_id?limit=20&min_rt=0
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Every signal is stamped with `base_score`, `rt_score`, `entropy_level` (low / stable / high), `ha_pri_sig` (Ha-Pri v1 SHA-256 provenance reference), `semantic_fingerprint` (cross-adapter dedup), and `published_at`. Ready for direct LLM or agent consumption — no synthesis required.
|
|
90
|
+
|
|
91
|
+
Production endpoint: `https://freshcontext-mcp.gimmanuel73.workers.dev`
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
## Reference adapters
|
|
96
|
+
|
|
97
|
+
The repo ships 21 tools demonstrating how to make any data source FreshContext-compatible. Useful as drop-in tools, but the value is the layer above them.
|
|
98
|
+
|
|
99
|
+
### Intelligence
|
|
100
|
+
| Adapter | What it returns |
|
|
101
|
+
|---|---|
|
|
102
|
+
| `extract_github` | README, stars, forks, language, topics, last commit |
|
|
103
|
+
| `extract_hackernews` | Top stories or search results with scores and timestamps |
|
|
104
|
+
| `extract_scholar` | Research papers — titles, authors, years, snippets |
|
|
105
|
+
| `extract_arxiv` | arXiv papers via official API |
|
|
106
|
+
| `extract_reddit` | Posts and community sentiment from any subreddit |
|
|
107
|
+
|
|
108
|
+
### Competitive research
|
|
109
|
+
| Adapter | What it returns |
|
|
110
|
+
|---|---|
|
|
111
|
+
| `extract_yc` | YC company listings by keyword |
|
|
112
|
+
| `extract_producthunt` | Recent launches by topic |
|
|
113
|
+
| `search_repos` | GitHub repos ranked by stars with activity signals |
|
|
114
|
+
| `package_trends` | npm and PyPI metadata — version history, release cadence |
|
|
115
|
+
|
|
116
|
+
### Market data
|
|
117
|
+
| Adapter | What it returns |
|
|
118
|
+
|---|---|
|
|
119
|
+
| `extract_finance` | No-key Stooq quote data — close, OHLC, volume, quote timestamp, source. Up to 5 tickers. |
|
|
120
|
+
| `search_jobs` | Remote job listings from Remotive, RemoteOK, HN "Who is Hiring" |
|
|
121
|
+
|
|
122
|
+
### Composites — multiple sources, one call
|
|
123
|
+
| Adapter | Sources | Purpose |
|
|
124
|
+
|---|---|---|
|
|
125
|
+
| `extract_landscape` | 6 | YC + GitHub + HN + Reddit + Product Hunt + npm in parallel |
|
|
126
|
+
| `extract_idea_landscape` | 6 | HN + YC + GitHub + Jobs + npm + Product Hunt — full idea validation |
|
|
127
|
+
| `extract_gov_landscape` | 4 | Gov contracts + HN + GitHub + changelog |
|
|
128
|
+
| `extract_finance_landscape` | 5 | Finance + HN + Reddit + GitHub + changelog |
|
|
129
|
+
| `extract_company_landscape` | 5 | The full picture on any company |
|
|
130
|
+
|
|
131
|
+
### Unique — not available in any other MCP server
|
|
132
|
+
| Adapter | Source | What it returns |
|
|
133
|
+
|---|---|---|
|
|
134
|
+
| `extract_changelog` | GitHub Releases / npm / auto-discover | Update history from any repo, package, or website |
|
|
135
|
+
| `extract_govcontracts` | USASpending.gov | US federal contract awards — company, amount, agency, period |
|
|
136
|
+
| `extract_sec_filings` | SEC EDGAR | 8-K filings — legally mandated material event disclosures |
|
|
137
|
+
| `extract_gdelt` | GDELT Project | Global news intelligence — 100+ languages, 15-min updates |
|
|
138
|
+
| `extract_gebiz` | data.gov.sg | Singapore Government procurement tenders — open dataset |
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
## Quick start
|
|
143
|
+
|
|
144
|
+
### Cloud (no install)
|
|
145
|
+
|
|
146
|
+
Add to your Claude Desktop config and restart:
|
|
147
|
+
|
|
148
|
+
**Mac:** `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
149
|
+
**Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
150
|
+
|
|
151
|
+
```json
|
|
152
|
+
{
|
|
153
|
+
"mcpServers": {
|
|
154
|
+
"freshcontext": {
|
|
155
|
+
"command": "npx",
|
|
156
|
+
"args": ["-y", "mcp-remote", "https://freshcontext-mcp.gimmanuel73.workers.dev/mcp"]
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
Restart Claude. Done.
|
|
163
|
+
|
|
164
|
+
> Prefer a guided setup? Visit **[freshcontext-site.pages.dev](https://freshcontext-site.pages.dev)** — 3 steps, no terminal.
|
|
165
|
+
|
|
166
|
+
### Local (full Playwright)
|
|
167
|
+
|
|
168
|
+
**Requires:** Node.js 20+ ([nodejs.org](https://nodejs.org))
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
git clone https://github.com/PrinceGabriel-lgtm/freshcontext-mcp
|
|
172
|
+
cd freshcontext-mcp
|
|
173
|
+
npm install
|
|
174
|
+
npx playwright install chromium
|
|
175
|
+
npm run build
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
Add to Claude Desktop config:
|
|
179
|
+
|
|
180
|
+
**Mac:**
|
|
181
|
+
```json
|
|
182
|
+
{
|
|
183
|
+
"mcpServers": {
|
|
184
|
+
"freshcontext": {
|
|
185
|
+
"command": "node",
|
|
186
|
+
"args": ["/Users/YOUR_USERNAME/path/to/freshcontext-mcp/dist/server.js"]
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
**Windows:**
|
|
193
|
+
```json
|
|
194
|
+
{
|
|
195
|
+
"mcpServers": {
|
|
196
|
+
"freshcontext": {
|
|
197
|
+
"command": "node",
|
|
198
|
+
"args": ["C:\\Users\\YOUR_USERNAME\\path\\to\\freshcontext-mcp\\dist\\server.js"]
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
#### Mac troubleshooting
|
|
205
|
+
|
|
206
|
+
**"command not found: node"** — Use the full path:
|
|
207
|
+
```bash
|
|
208
|
+
which node # copy this output, replace "node" in config
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
**Config file doesn't exist:**
|
|
212
|
+
```bash
|
|
213
|
+
mkdir -p ~/Library/Application\ Support/Claude
|
|
214
|
+
touch ~/Library/Application\ Support/Claude/claude_desktop_config.json
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## Usage examples
|
|
220
|
+
|
|
221
|
+
The `npm run demo:*` commands below are source-checkout workflows for contributors and evaluators using a cloned repository. The published npm package is the MCP server/runtime package and does not include repo-only source examples or tests.
|
|
222
|
+
|
|
223
|
+
From an installed npm package, the supported runtime entrypoints are `npm start` and the `freshcontext-mcp` binary. Repo-only scripts such as tests, demos, smoke checks, and trust scans print a source-checkout notice when their source files are not present.
|
|
224
|
+
|
|
225
|
+
The Apify Actor entrypoint remains available in the source checkout for separate actor packaging, but it is intentionally not part of the published MCP npm runtime package.
|
|
226
|
+
|
|
227
|
+
### Release trust gate
|
|
228
|
+
|
|
229
|
+
Run the local release gate before a release, package review, demo, or PR review:
|
|
230
|
+
|
|
231
|
+
```bash
|
|
232
|
+
npm run trust:gate
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
The gate runs the Trust Scanner with repo-map reporting, npm package-boundary inspection, deterministic claim checks, and `--fail-on fail`. It is local-only, does not publish or deploy, does not send telemetry, and does not replace dedicated security scanners.
|
|
236
|
+
|
|
237
|
+
Generate review reports when you need a shareable summary:
|
|
238
|
+
|
|
239
|
+
```bash
|
|
240
|
+
npm run trust:report
|
|
241
|
+
npm run trust:report:json
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
To write a Markdown report file explicitly:
|
|
245
|
+
|
|
246
|
+
```bash
|
|
247
|
+
npm run trust:report -- --output TRUST_SCAN_REPORT.md
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
### Bring your own source list
|
|
251
|
+
|
|
252
|
+
FreshContext can evaluate candidate context you provide as a local JSON file:
|
|
253
|
+
|
|
254
|
+
```bash
|
|
255
|
+
npm run demo:evaluate:file
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
To pass a different file:
|
|
259
|
+
|
|
260
|
+
```bash
|
|
261
|
+
npm run demo:evaluate:file -- path/to/sources.json
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
Included examples:
|
|
265
|
+
|
|
266
|
+
```bash
|
|
267
|
+
npm run demo:evaluate:file -- examples/sources.academic.example.json
|
|
268
|
+
npm run demo:evaluate:file -- examples/sources.jobs.example.json
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
Minimal shape:
|
|
272
|
+
|
|
273
|
+
```json
|
|
274
|
+
{
|
|
275
|
+
"profile": "academic_research",
|
|
276
|
+
"intent": "citation_check",
|
|
277
|
+
"signals": [
|
|
278
|
+
{
|
|
279
|
+
"title": "...",
|
|
280
|
+
"content": "...",
|
|
281
|
+
"source": "...",
|
|
282
|
+
"source_type": "arxiv",
|
|
283
|
+
"published_at": "...",
|
|
284
|
+
"retrieved_at": "...",
|
|
285
|
+
"semantic_score": 0.92
|
|
286
|
+
}
|
|
287
|
+
]
|
|
288
|
+
}
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
This local demo does not fetch URLs, crawl, or read folders. It evaluates candidate context you provide and returns decision-first output: Decision, Meaning, Action, Warnings, and supporting metrics.
|
|
292
|
+
|
|
293
|
+
**Should I build this idea?**
|
|
294
|
+
```
|
|
295
|
+
Use extract_idea_landscape with idea "procurement intelligence saas"
|
|
296
|
+
```
|
|
297
|
+
Returns funding signal, pain signal, crowding signal, market signal, ecosystem signal, and launch signal — all timestamped.
|
|
298
|
+
|
|
299
|
+
**Full company intelligence in one call:**
|
|
300
|
+
```
|
|
301
|
+
Use extract_company_landscape with company "Palantir" and ticker "PLTR"
|
|
302
|
+
```
|
|
303
|
+
SEC filings + federal contracts + global news + changelog + market data.
|
|
304
|
+
|
|
305
|
+
**Did that company just disclose something material?**
|
|
306
|
+
```
|
|
307
|
+
Use extract_sec_filings with url "Palantir Technologies"
|
|
308
|
+
```
|
|
309
|
+
8-K filings are legally mandated within 4 business days of any material event — CEO change, acquisition, breach, major contract.
|
|
310
|
+
|
|
311
|
+
**Is this dependency still actively maintained?**
|
|
312
|
+
```
|
|
313
|
+
Use extract_changelog with url "https://github.com/org/repo"
|
|
314
|
+
```
|
|
315
|
+
Returns the last 8 releases with exact dates. If the last release was 18 months ago, you'll know before you pin the version.
|
|
316
|
+
|
|
317
|
+
---
|
|
318
|
+
|
|
319
|
+
## Deployment & infrastructure
|
|
320
|
+
|
|
321
|
+
The reference implementation runs on Cloudflare's global edge:
|
|
322
|
+
|
|
323
|
+
| Endpoint | Method | Purpose |
|
|
324
|
+
|---|---|---|
|
|
325
|
+
| `/` | GET | Service info + endpoint list |
|
|
326
|
+
| `/health` | GET | Liveness check |
|
|
327
|
+
| `/mcp` | POST | MCP JSON-RPC transport |
|
|
328
|
+
| `/demo` | GET | Live before/after demo (no API key required) |
|
|
329
|
+
| `/briefing` | GET | Latest stored briefing |
|
|
330
|
+
| `/v1/intel/feed/:profile_id` | GET | DAR-scored intelligence feed |
|
|
331
|
+
| `/watched-queries` | GET | List all watched queries |
|
|
332
|
+
|
|
333
|
+
- **D1 database** — 18 watched queries running on 6-hour cron with relevancy scoring
|
|
334
|
+
- **KV-backed rate limiting** — 60 req/min per IP across all edge nodes
|
|
335
|
+
- **Defensive valves** — clock-skew rejection (5min tolerance), hard floor at R_t<5, lazy decay at read time
|
|
336
|
+
- **Provenance** — Ha-Pri v1 SHA-256 provenance stamps on stored signals; hard tamper enforcement is a future Ha-Pri v2 path
|
|
337
|
+
- **Schema migrations** — promise-gated, idempotent, run on first request after deploy
|
|
338
|
+
|
|
339
|
+
Production: `https://freshcontext-mcp.gimmanuel73.workers.dev`
|
|
340
|
+
|
|
341
|
+
---
|
|
342
|
+
|
|
343
|
+
## Roadmap
|
|
344
|
+
|
|
345
|
+
- [x] FreshContext Specification v1.2 published (MIT, open standard)
|
|
346
|
+
- [x] DAR engine with proprietary λ constants (v0.3.18)
|
|
347
|
+
- [x] Ha-Pri v1 provenance signatures on stored signals
|
|
348
|
+
- [x] Semantic deduplication via fingerprinting
|
|
349
|
+
- [x] Live before/after demo at `/demo`
|
|
350
|
+
- [x] METHODOLOGY.md — formal IP and engineering documentation
|
|
351
|
+
- [x] 21 reference tools across intelligence, competitive research, market data, and composites
|
|
352
|
+
- [x] Core-backed envelope generation shared by npm/MCP and the Cloudflare Worker
|
|
353
|
+
- [x] Cloudflare Workers deployment — global edge, KV cache, KV rate limiting
|
|
354
|
+
- [x] Listed on official MCP Registry, Apify Store, npm
|
|
355
|
+
- [ ] Ha-Pri v2 hardened canonical content hash verification
|
|
356
|
+
- [x] GitHub Actions release workflow — manual or `v*` tag-triggered npm publish path
|
|
357
|
+
- [ ] Webhook triggers — push high-entropy signals on threshold
|
|
358
|
+
- [ ] Dashboard — React frontend for the D1 intelligence pipeline
|
|
359
|
+
- [ ] GKG upgrade for `extract_gdelt` — tone scores, goldstein scale, event codes
|
|
360
|
+
|
|
361
|
+
---
|
|
362
|
+
|
|
363
|
+
## Contributing
|
|
364
|
+
|
|
365
|
+
PRs welcome. New adapters are the highest-value contribution — see `src/adapters/` for the pattern and [`FRESHCONTEXT_SPEC.md`](./FRESHCONTEXT_SPEC.md) for the contract any adapter must fulfil.
|
|
366
|
+
|
|
367
|
+
If you're building something FreshContext-compatible, open an issue and we'll add you to the ecosystem list.
|
|
368
|
+
|
|
369
|
+
---
|
|
370
|
+
|
|
371
|
+
## Trust and security
|
|
372
|
+
|
|
373
|
+
- [LICENSE](./LICENSE)
|
|
374
|
+
- [SECURITY.md](./SECURITY.md)
|
|
375
|
+
- [NOTICE.md](./NOTICE.md)
|
|
376
|
+
- [TRADEMARKS.md](./TRADEMARKS.md)
|
|
377
|
+
- [Dependency diligence notes](./docs/DEPENDENCY_DILIGENCE.md)
|
|
378
|
+
- [Release integrity notes](./docs/RELEASE_INTEGRITY.md)
|
|
379
|
+
- [Release notes](./docs/RELEASE_NOTES.md)
|
|
380
|
+
- [Operational demo runbook](./docs/OPERATIONAL_DEMO_RUNBOOK.md)
|
|
381
|
+
|
|
382
|
+
---
|
|
383
|
+
|
|
384
|
+
## License
|
|
385
|
+
|
|
386
|
+
MIT
|
|
387
|
+
|
|
388
|
+
---
|
|
389
|
+
|
|
390
|
+
*Built by Prince Gabriel — Grootfontein, Namibia 🇳🇦*
|
|
391
|
+
*"The work isn't gone. It's just waiting to be continued."*
|
|
392
|
+
|
|
393
|
+
---
|
|
394
|
+
|
|
395
|
+
**Also on:** [Apify Store](https://apify.com/prince_gabriel/freshcontext-mcp) · [MCP Registry](https://registry.modelcontextprotocol.io) · [npm](https://www.npmjs.com/package/freshcontext-mcp)
|