context-mode 0.5.9 → 0.5.10
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.
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"name": "context-mode",
|
|
14
14
|
"source": "./",
|
|
15
15
|
"description": "Claude Code MCP plugin that saves 98% of your context window. Sandboxed code execution in 10 languages, FTS5 knowledge base with BM25 ranking, and intent-driven search.",
|
|
16
|
-
"version": "0.5.
|
|
16
|
+
"version": "0.5.10",
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "Mert Koseoğlu"
|
|
19
19
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "context-mode",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.10",
|
|
4
4
|
"description": "Claude Code MCP plugin that saves 98% of your context window. Sandboxed code execution in 10 languages, FTS5 knowledge base with BM25 ranking, and intent-driven search.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Mert Koseoğlu",
|
package/build/server.js
CHANGED
|
@@ -5,7 +5,7 @@ import { z } from "zod";
|
|
|
5
5
|
import { PolyglotExecutor } from "./executor.js";
|
|
6
6
|
import { ContentStore } from "./store.js";
|
|
7
7
|
import { detectRuntimes, getRuntimeSummary, getAvailableLanguages, hasBunRuntime, } from "./runtime.js";
|
|
8
|
-
const VERSION = "0.5.
|
|
8
|
+
const VERSION = "0.5.10";
|
|
9
9
|
const runtimes = detectRuntimes();
|
|
10
10
|
const available = getAvailableLanguages(runtimes);
|
|
11
11
|
const server = new McpServer({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "context-mode",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Claude Code MCP plugin that saves 98% of your context window. Sandboxed code execution, FTS5 knowledge base, and intent-driven search.",
|
|
6
6
|
"author": "Mert Koseoğlu",
|
|
@@ -41,9 +41,14 @@ description: |
|
|
|
41
41
|
|
|
42
42
|
API Endpoints: hit endpoint, call API, check response, test endpoint, API debugging.
|
|
43
43
|
|
|
44
|
+
Browser & UI Inspection: page snapshot, browser snapshot, extract elements, DOM structure,
|
|
45
|
+
page accessibility tree, inspect page, page elements, form fields, UI components,
|
|
46
|
+
screenshot analysis, web page structure, HTML elements, element selectors.
|
|
47
|
+
|
|
48
|
+
MCP Tool Output Routing: ANY large output from Playwright, Context7, GitHub API,
|
|
49
|
+
Sentry, or other MCP tools should be routed through index → search.
|
|
50
|
+
|
|
44
51
|
Or ANY operation where output might exceed 20 lines.
|
|
45
|
-
Also use when routing output from other MCP tools (Playwright snapshots, Context7 docs,
|
|
46
|
-
GitHub API responses, Sentry data) through index → search to avoid context bloat.
|
|
47
52
|
---
|
|
48
53
|
|
|
49
54
|
# Context Mode: Default for All Large Output
|