@coderule/mcp 1.7.1 → 1.8.0
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/dist/mcp-cli.cjs +13 -3
- package/dist/mcp-cli.cjs.map +1 -1
- package/dist/mcp-cli.js +13 -3
- package/dist/mcp-cli.js.map +1 -1
- package/package.json +2 -2
package/dist/mcp-cli.js
CHANGED
|
@@ -1808,9 +1808,19 @@ function formatStatus(status) {
|
|
|
1808
1808
|
` Pass 2 (Cross-Reference): ${formatDuration(timing.pass2)}`
|
|
1809
1809
|
);
|
|
1810
1810
|
}
|
|
1811
|
-
if (timing.
|
|
1811
|
+
if (timing.pass2_hdf5_compile !== void 0) {
|
|
1812
1812
|
lines.push(
|
|
1813
|
-
`
|
|
1813
|
+
` HDF5 Compilation: ${formatDuration(timing.pass2_hdf5_compile)}`
|
|
1814
|
+
);
|
|
1815
|
+
}
|
|
1816
|
+
if (timing.pass2_hdf5_dedup !== void 0) {
|
|
1817
|
+
lines.push(
|
|
1818
|
+
` HDF5 Deduplication: ${formatDuration(timing.pass2_hdf5_dedup)}`
|
|
1819
|
+
);
|
|
1820
|
+
}
|
|
1821
|
+
if (timing.pass2_hdf5_write !== void 0) {
|
|
1822
|
+
lines.push(
|
|
1823
|
+
` HDF5 Write I/O: ${formatDuration(timing.pass2_hdf5_write)}`
|
|
1814
1824
|
);
|
|
1815
1825
|
}
|
|
1816
1826
|
const totalTime = (timing.pass1 ?? 0) + (timing.gap ?? 0) + (timing.pass2 ?? 0);
|
|
@@ -1950,7 +1960,7 @@ function createMcpServer({
|
|
|
1950
1960
|
"query",
|
|
1951
1961
|
{
|
|
1952
1962
|
title: "Semantic Code Retrieval",
|
|
1953
|
-
description: "
|
|
1963
|
+
description: "USE THIS before code exploration. Graph-based RAG for semantic code search using AST relationships and embeddings. Returns 30-50 code segments with file paths and line numbers. After initial query, you may query again with refined keywords or use conventional tools (Read, Glob, Grep) for specific files.",
|
|
1954
1964
|
inputSchema: {
|
|
1955
1965
|
query: z.string().min(1, "Query text is required").describe(`Keyword-rich query using technical terms (NOT natural language questions).
|
|
1956
1966
|
|