context-mode 0.5.6 → 0.5.8
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.8",
|
|
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.8",
|
|
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.8";
|
|
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.8",
|
|
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",
|
|
@@ -13,8 +13,17 @@ description: |
|
|
|
13
13
|
"analyze output", "summarize output", "process data", "parse JSON", "parse CSV",
|
|
14
14
|
"filter results", "extract errors", "check build output", "analyze dependencies",
|
|
15
15
|
"process API response", "large file analysis", "hit this endpoint", "call the API",
|
|
16
|
-
"check the response", "
|
|
17
|
-
"
|
|
16
|
+
"check the response", "outdated packages", "count lines", "find TODOs",
|
|
17
|
+
"analyze codebase", "security audit",
|
|
18
|
+
"docker stats", "docker ps", "docker containers", "docker logs", "list containers",
|
|
19
|
+
"container memory", "container CPU", "container usage", "check pods", "kubectl get",
|
|
20
|
+
"kubectl describe", "kubectl logs", "list pods", "pod status", "k8s", "kubernetes",
|
|
21
|
+
"list services", "list deployments", "helm list", "docker compose",
|
|
22
|
+
"npm ls", "pip list", "brew list", "apt list", "cargo tree",
|
|
23
|
+
"list processes", "ps aux", "top", "htop", "disk usage", "df -h", "du -sh",
|
|
24
|
+
"network connections", "netstat", "lsof", "ss -tlnp",
|
|
25
|
+
"list databases", "show tables", "describe table", "explain query",
|
|
26
|
+
"aws s3 ls", "aws ec2 describe", "gcloud", "az vm list",
|
|
18
27
|
or ANY operation where output might exceed 20 lines.
|
|
19
28
|
Also use when routing output from other MCP tools (Playwright snapshots, Context7 docs,
|
|
20
29
|
GitHub API responses, Sentry data) through index → search to avoid context bloat.
|