freshcontext-mcp 0.3.21 → 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 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.21`. The hosted Cloudflare Worker MCP endpoint was last verified separately at `0.3.20 / 22 tools`. The Worker remains a separate deployment surface, so future package interfaces should be re-verified remotely before being claimed live.
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
 
@@ -96,6 +96,16 @@ export const BUILT_IN_SOURCE_PROFILES = Object.freeze({
96
96
  failure_policy: "downgrade",
97
97
  recommended_surfaces: ["mcp", "rest", "sdk", "operator"],
98
98
  }),
99
+ product_research: profile({
100
+ profile_id: "product_research",
101
+ source_types: ["product_page", "pricing_page", "launch_page", "vendor_docs", "changelog", "producthunt"],
102
+ purpose: "Product pages, launch material, pricing pages, vendor documentation, changelogs, and adoption evidence.",
103
+ default_decay_lambda: LAMBDA.producthunt,
104
+ authority_hint: "medium",
105
+ date_policy: "balanced",
106
+ failure_policy: "downgrade",
107
+ recommended_surfaces: ["mcp", "rest", "sdk", "cli", "operator"],
108
+ }),
99
109
  composite_landscape: profile({
100
110
  profile_id: "composite_landscape",
101
111
  source_types: ["landscape", "idea_landscape", "gov_landscape", "finance_landscape", "company_landscape"],
@@ -106,6 +116,16 @@ export const BUILT_IN_SOURCE_PROFILES = Object.freeze({
106
116
  failure_policy: "warn",
107
117
  recommended_surfaces: ["mcp", "rest", "sdk", "operator"],
108
118
  }),
119
+ multi_agent_handoff: profile({
120
+ profile_id: "multi_agent_handoff",
121
+ source_types: ["agent_handoff", "agent_context", "workflow_context", "user_provided"],
122
+ purpose: "Caller-provided context passed between agents or workflow steps, with warnings and provenance preserved.",
123
+ default_decay_lambda: LAMBDA.default,
124
+ authority_hint: "medium",
125
+ date_policy: "balanced",
126
+ failure_policy: "warn",
127
+ recommended_surfaces: ["mcp", "rest", "sdk", "cli", "operator"],
128
+ }),
109
129
  local_custom: profile({
110
130
  profile_id: "local_custom",
111
131
  source_types: ["local_custom", "user_provided", "custom"],
@@ -32,7 +32,7 @@ export type SourceAuthorityHint = "high" | "medium" | "low";
32
32
  export type SourceDatePolicy = "strict" | "balanced" | "lenient";
33
33
  export type SourceFailurePolicy = "exclude" | "downgrade" | "warn";
34
34
  export type SourceSurface = "mcp" | "rest" | "sdk" | "cli" | "operator";
35
- export type SourceProfileId = "official_docs" | "code_activity" | "social_pulse" | "academic_research" | "market_finance" | "jobs_opportunities" | "government_regulatory" | "company_intel" | "composite_landscape" | "local_custom";
35
+ export type SourceProfileId = "official_docs" | "code_activity" | "social_pulse" | "academic_research" | "market_finance" | "jobs_opportunities" | "government_regulatory" | "company_intel" | "product_research" | "composite_landscape" | "multi_agent_handoff" | "local_custom";
36
36
  export type ContextDecision = "use_first" | "cite_as_primary" | "cite_as_supporting" | "use_as_background" | "needs_verification" | "needs_refresh" | "watch_only" | "exclude";
37
37
  export type IntentProfileId = "citation_check" | "student_research" | "developer_adoption" | "job_search" | "market_watch" | "business_due_diligence" | "medical_literature_triage";
38
38
  export type ContextUtilityStatus = "success" | "partial" | "stale" | "failed" | "unknown";
@@ -1,5 +1,5 @@
1
1
  import { evaluateSignal, evaluateSignals } from "../core/index.js";
2
- const SERVICE_VERSION = "0.1.0";
2
+ const SERVICE_VERSION = "0.3.23";
3
3
  const JSON_CONTENT_TYPE = "application/json";
4
4
  const MAX_BODY_BYTES = 256 * 1024;
5
5
  function jsonResponse(body, status = 200) {
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.21",
26
+ version: "0.3.23",
27
27
  });
28
28
  const signalInputSchema = z.object({
29
29
  id: z.string().optional(),
@@ -44,7 +44,7 @@ const signalInputSchema = z.object({
44
44
  server.registerTool("evaluate_context", {
45
45
  description: "Evaluate caller-provided candidate context and return decision-ready output. This is the primary FreshContext judgment path: it does not fetch, crawl, scrape, browse, read folders, or call adapters.",
46
46
  inputSchema: z.object({
47
- profile: z.string().min(1).describe("Source Profile id, e.g. academic_research, jobs_opportunities, market_finance, official_docs, local_custom."),
47
+ profile: z.string().min(1).describe("Source Profile id, e.g. academic_research, jobs_opportunities, market_finance, official_docs, product_research, multi_agent_handoff, local_custom."),
48
48
  intent: z.string().min(1).describe("Intent Profile id, e.g. citation_check, student_research, developer_adoption, job_search, market_watch, business_due_diligence, medical_literature_triage."),
49
49
  signals: z.array(signalInputSchema).min(1).max(100).describe("Candidate context items provided by the caller. FreshContext evaluates these; it does not retrieve them."),
50
50
  now: z.string().optional().describe("Optional ISO timestamp for deterministic evaluation."),
@@ -6,7 +6,7 @@ Use this guide when connecting Claude Desktop, Codex, or another MCP-compatible
6
6
 
7
7
  ## What You Should See
8
8
 
9
- FreshContext `0.3.21` exposes:
9
+ FreshContext `0.3.22` exposes:
10
10
 
11
11
  ```text
12
12
  22 tools = evaluate_context + 21 read-only reference adapters
@@ -105,8 +105,8 @@ Expected smoke result:
105
105
  ```json
106
106
  {
107
107
  "ok": true,
108
- "package_version": "0.3.21",
109
- "server_version": "0.3.21",
108
+ "package_version": "0.3.22",
109
+ "server_version": "0.3.22",
110
110
  "tool_count": 22
111
111
  }
112
112
  ```
@@ -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 verified on 2026-06-12 at `0.3.20 / 22 tools` with `evaluate_context` present and returning decision-first output. Because the Worker is a separate deployment surface, re-run remote verification before claiming future package interfaces are live there.
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
 
@@ -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 verified on 2026-06-12 as a live Worker MCP endpoint exposing `0.3.20 / 22 tools`, including `evaluate_context`. 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.
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
 
@@ -83,8 +83,8 @@ Expected result:
83
83
  ```json
84
84
  {
85
85
  "ok": true,
86
- "package_version": "0.3.21",
87
- "server_version": "0.3.21",
86
+ "package_version": "0.3.22",
87
+ "server_version": "0.3.22",
88
88
  "tool_count": 22
89
89
  }
90
90
  ```
package/docs/CORE_API.md CHANGED
@@ -119,9 +119,11 @@ Public exports:
119
119
  - `SourceFailurePolicy`
120
120
  - `SourceSurface`
121
121
 
122
- They reframe the 21 named adapter tools as reference adapters and source-profile examples instead of the product identity. The MCP server also exposes `evaluate_context` as the generic caller-provided context evaluation path. Source Profiles do not implement `retrieve(...)`, Operator mode, adapter selection, crawling, local file search, or any host/runtime behavior.
123
-
124
- ## Decision Helper
122
+ They reframe the 21 named adapter tools as reference adapters and source-profile examples instead of the product identity. The MCP server also exposes `evaluate_context` as the generic caller-provided context evaluation path. Source Profiles do not implement `retrieve(...)`, Operator mode, adapter selection, crawling, local file search, or any host/runtime behavior.
123
+
124
+ Current built-in profiles include canonical docs, code activity, social pulse, academic research, market/finance, jobs, government/regulatory material, company intelligence, product research, composite landscapes, multi-agent handoff context, and local/custom caller-provided context.
125
+
126
+ ## Decision Helper
125
127
 
126
128
  The decision helper translates a Core evaluation result into user-facing action meaning.
127
129
 
@@ -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.21`
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
@@ -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.21`
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
@@ -1,5 +1,21 @@
1
1
  # FreshContext Release Notes
2
2
 
3
+ ## 0.3.22
4
+
5
+ FreshContext 0.3.22 expands Source Profiles as judgment policies without adding adapters or retrieval behavior.
6
+
7
+ ### Source Profile Expansion
8
+
9
+ - Adds `product_research` for product pages, pricing pages, launch pages, vendor docs, changelogs, and adoption evidence.
10
+ - Adds `multi_agent_handoff` for caller-provided context passed between agents or workflow steps.
11
+ - Preserves `official_docs` as an existing built-in profile with replay coverage.
12
+
13
+ ### Validation Coverage
14
+
15
+ - Adds saved Signal Contract v1 replay fixtures for product research and multi-agent handoff.
16
+ - Extends batch validation and `evaluate_context` tests so the new profiles return decision-ready, readable output.
17
+ - Keeps the boundary explicit: profiles are judgment policies, not fetching, crawling, adapter selection, Operator mode, or agent orchestration.
18
+
3
19
  ## 0.3.21
4
20
 
5
21
  FreshContext 0.3.21 adds provenance readiness and readable handoff safety for judged context.
@@ -1,6 +1,6 @@
1
1
  # FreshContext Source Profiles
2
2
 
3
- Status: early Core metadata
3
+ Status: current Core metadata
4
4
 
5
5
  FreshContext is a context gateway for agents and humans before reasoning. It turns raw candidate context into freshness-ranked, explained, provenance-aware context.
6
6
 
@@ -39,10 +39,12 @@ They demonstrate that FreshContext can evaluate different information classes:
39
39
  - social pulse
40
40
  - academic and research material
41
41
  - financial and market signals
42
- - jobs and opportunities
43
- - government, regulatory, and procurement data
44
- - competitive and company intelligence
45
- - composite multi-source landscapes
42
+ - jobs and opportunities
43
+ - government, regulatory, and procurement data
44
+ - competitive and company intelligence
45
+ - product research and adoption evidence
46
+ - composite multi-source landscapes
47
+ - multi-agent handoff context
46
48
 
47
49
  ## Source Profiles
48
50
 
@@ -59,7 +61,7 @@ adapter output
59
61
  -> host response
60
62
  ```
61
63
 
62
- As of Pass 8-J, Core exports built-in profile presets and a small metadata contract shaped like:
64
+ Core exports built-in profile presets and a small metadata contract shaped like:
63
65
 
64
66
  ```ts
65
67
  type SourceProfile = {
@@ -77,7 +79,7 @@ type SourceProfile = {
77
79
 
78
80
  The existing Core `LAMBDA` table is the current decay-policy reference. Source Profiles make that policy understandable and product-facing without changing Core behavior.
79
81
 
80
- Pass 8-J adds:
82
+ The current Core API includes:
81
83
 
82
84
  - `BUILT_IN_SOURCE_PROFILES`
83
85
  - `getSourceProfile(profileId)`
@@ -96,9 +98,9 @@ The likely first extraction target remains `extract_arxiv`, because it is a low-
96
98
 
97
99
  ## Profile Groups
98
100
 
99
- ### Official / Canonical Documentation
100
-
101
- Strategic future profile.
101
+ ### Official / Canonical Documentation
102
+
103
+ Current built-in profile.
102
104
 
103
105
  Purpose: official product docs, API docs, standards, changelogs, specifications, legal references, and canonical source material.
104
106
 
@@ -252,9 +254,9 @@ Policy intent:
252
254
  - filing and tender dates should be strict
253
255
  - unknown dates should not be treated as fresh
254
256
 
255
- ### Company / Competitive Intelligence
256
-
257
- Purpose: company research, product velocity, ecosystem activity, funding/procurement signals, and competitive context.
257
+ ### Company / Competitive Intelligence
258
+
259
+ Purpose: company research, product velocity, ecosystem activity, funding/procurement signals, and competitive context.
258
260
 
259
261
  Current reference adapters:
260
262
 
@@ -271,11 +273,34 @@ Policy intent:
271
273
  - mixed-source profile
272
274
  - should preserve per-source timestamps where possible
273
275
  - should explain whether signal came from official records, market data, community pulse, or repository activity
274
- - useful for agents and buyer workflows, but not a replacement for due diligence
275
-
276
- ### Composite Landscape / Validation
277
-
278
- Purpose: multi-source validation and idea or market landscape checks.
276
+ - useful for agents and buyer workflows, but not a replacement for due diligence
277
+
278
+ ### Product Research / Adoption Evidence
279
+
280
+ Purpose: product pages, launch material, pricing pages, vendor documentation, changelogs, and adoption evidence.
281
+
282
+ Current source types:
283
+
284
+ - `product_page`
285
+ - `pricing_page`
286
+ - `launch_page`
287
+ - `vendor_docs`
288
+ - `changelog`
289
+ - `producthunt`
290
+
291
+ Policy intent:
292
+
293
+ - useful for buyer, developer-adoption, and product-comparison workflows
294
+ - official documentation and changelogs should outrank vague promotional material
295
+ - pricing and roadmap pages should be verified before acting on them
296
+ - missing, invalid, or future-dated timestamps should stay visible
297
+ - failed product pages should be excluded or downgraded, not wrapped as useful context
298
+
299
+ This profile is a judgment policy for caller-provided candidate context. It does not fetch vendor sites, select adapters, crawl product pages, browse, or implement a product-research agent.
300
+
301
+ ### Composite Landscape / Validation
302
+
303
+ Purpose: multi-source validation and idea or market landscape checks.
279
304
 
280
305
  Current reference adapters:
281
306
 
@@ -297,12 +322,32 @@ Policy intent:
297
322
 
298
323
  - each section should retain source-specific timestamps
299
324
  - composite freshness must not collapse all sections into one fake timestamp
300
- - partial failures should be visible
301
- - all-unavailable composites should not be cached or promoted as fresh
302
-
303
- ### Local / Custom Context
304
-
305
- Strategic future profile.
325
+ - partial failures should be visible
326
+ - all-unavailable composites should not be cached or promoted as fresh
327
+
328
+ ### Multi-Agent Handoff Context
329
+
330
+ Purpose: caller-provided context passed between agents or workflow steps, with warnings and provenance preserved.
331
+
332
+ Current source types:
333
+
334
+ - `agent_handoff`
335
+ - `agent_context`
336
+ - `workflow_context`
337
+ - `user_provided`
338
+
339
+ Policy intent:
340
+
341
+ - preserve what another agent thought mattered without treating it as automatically trustworthy
342
+ - keep missing dates, failed upstream outputs, weak provenance, and score normalization visible
343
+ - prefer source-preserving handoffs over vague summaries
344
+ - make context safe to pass forward only when the decision and provenance state support handoff
345
+
346
+ This profile is not Operator mode. It does not orchestrate agents, call tools, browse, crawl, read folders, or retrieve sources. It judges candidate context that a caller or agent already supplied.
347
+
348
+ ### Local / Custom Context
349
+
350
+ Current built-in profile.
306
351
 
307
352
  Purpose: user-provided files, PDFs, notes, lecture material, source lists, internal docs, research folders, and custom retrieval results.
308
353
 
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.21",
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",
@@ -28,28 +28,28 @@
28
28
  "engines": {
29
29
  "node": ">=20"
30
30
  },
31
- "main": "dist/server.js",
32
- "types": "dist/server.d.ts",
33
- "exports": {
34
- ".": {
35
- "types": "./dist/server.d.ts",
36
- "import": "./dist/server.js"
37
- },
38
- "./core": {
39
- "types": "./dist/core/index.d.ts",
40
- "import": "./dist/core/index.js"
41
- },
42
- "./package.json": "./package.json"
43
- },
44
- "bin": {
45
- "freshcontext-mcp": "dist/server.js"
46
- },
31
+ "main": "dist/server.js",
32
+ "types": "dist/server.d.ts",
33
+ "exports": {
34
+ ".": {
35
+ "types": "./dist/server.d.ts",
36
+ "import": "./dist/server.js"
37
+ },
38
+ "./core": {
39
+ "types": "./dist/core/index.d.ts",
40
+ "import": "./dist/core/index.js"
41
+ },
42
+ "./package.json": "./package.json"
43
+ },
44
+ "bin": {
45
+ "freshcontext-mcp": "dist/server.js"
46
+ },
47
47
  "files": [
48
- ".env.example",
49
- "dist/",
50
- "!dist/apify.js",
51
- "!dist/apify.d.ts",
52
- "FRESHCONTEXT_SPEC.md",
48
+ ".env.example",
49
+ "dist/",
50
+ "!dist/apify.js",
51
+ "!dist/apify.d.ts",
52
+ "FRESHCONTEXT_SPEC.md",
53
53
  "METHODOLOGY.md",
54
54
  "docs/API_DESIGN.md",
55
55
  "docs/CLIENT_SETUP.md",
@@ -58,10 +58,10 @@
58
58
  "docs/CORE_API.md",
59
59
  "docs/DEPENDENCY_DILIGENCE.md",
60
60
  "docs/FUTURE_LANES.md",
61
- "docs/HA_PRI_V2_DESIGN.md",
62
- "docs/HA_PRI_V2_PRODUCTION_ENFORCEMENT_PLAN.md",
63
- "docs/HUMAN_READABLE_OUTPUT_CONTRACT.md",
64
- "docs/RELEASE_INTEGRITY.md",
61
+ "docs/HA_PRI_V2_DESIGN.md",
62
+ "docs/HA_PRI_V2_PRODUCTION_ENFORCEMENT_PLAN.md",
63
+ "docs/HUMAN_READABLE_OUTPUT_CONTRACT.md",
64
+ "docs/RELEASE_INTEGRITY.md",
65
65
  "docs/RELEASE_NOTES.md",
66
66
  "docs/SIGNAL_CONTRACT.md",
67
67
  "docs/SOURCE_PROFILES.md",
@@ -79,11 +79,11 @@
79
79
  "inspect": "node package-script-guard.mjs inspect",
80
80
  "example:ha-pri-v2": "node package-script-guard.mjs example:ha-pri-v2",
81
81
  "demo:arxiv": "node package-script-guard.mjs demo:arxiv",
82
- "demo:evaluate": "node package-script-guard.mjs demo:evaluate",
83
- "demo:evaluate:file": "node package-script-guard.mjs demo:evaluate:file",
84
- "batch:validate": "node package-script-guard.mjs batch:validate",
85
- "core:fixture": "node package-script-guard.mjs core:fixture",
86
- "smoke:stdio": "node package-script-guard.mjs smoke:stdio",
82
+ "demo:evaluate": "node package-script-guard.mjs demo:evaluate",
83
+ "demo:evaluate:file": "node package-script-guard.mjs demo:evaluate:file",
84
+ "batch:validate": "node package-script-guard.mjs batch:validate",
85
+ "core:fixture": "node package-script-guard.mjs core:fixture",
86
+ "smoke:stdio": "node package-script-guard.mjs smoke:stdio",
87
87
  "trust:gate": "node package-script-guard.mjs trust:gate",
88
88
  "trust:report": "node package-script-guard.mjs trust:report",
89
89
  "trust:report:json": "node package-script-guard.mjs trust:report:json",
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.21",
10
- "website_url": "https://freshcontext-site.pages.dev",
11
- "packages": [
12
- {
13
- "registryType": "npm",
14
- "identifier": "freshcontext-mcp",
15
- "version": "0.3.21",
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
+ }