agentic-knowledge-mcp 0.1.4 → 0.1.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.
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
> This project is under active development and not yet ready for production use. APIs may change without notice.
|
|
5
5
|
|
|
6
6
|
<div align="center">
|
|
7
|
-
<h3>The End of RAG. The Dawn of Agentic Search.</h3>
|
|
7
|
+
<h3>The End of RAG. The Dawn of Agentic Search. Maybe.</h3>
|
|
8
8
|
<p><em>Intelligent navigation instructions that guide AI assistants through documentation using filesystem-like exploration instead of traditional retrieval</em></p>
|
|
9
9
|
|
|
10
10
|
<a href="https://github.com/yourusername/agentic-knowledge/blob/main/LICENSE">
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-knowledge-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "A Model Context Protocol server for agentic knowledge guidance with web-based documentation loading and intelligent search instructions",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "packages/
|
|
6
|
+
"main": "packages/cli/dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"agentic-knowledge": "packages/cli/dist/index.js"
|
|
9
9
|
},
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"commander": "^12.0.0",
|
|
30
30
|
"chalk": "^5.3.0",
|
|
31
31
|
"ora": "^8.0.1",
|
|
32
|
-
"@codemcp/knowledge-
|
|
33
|
-
"@codemcp/knowledge-
|
|
34
|
-
"@codemcp/knowledge-
|
|
32
|
+
"@codemcp/knowledge-content-loader": "0.1.8",
|
|
33
|
+
"@codemcp/knowledge-mcp-server": "0.1.8",
|
|
34
|
+
"@codemcp/knowledge-core": "0.1.8"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@modelcontextprotocol/inspector": "0.16.8",
|
|
@@ -11,7 +11,12 @@ const __filename = fileURLToPath(import.meta.url);
|
|
|
11
11
|
const __dirname = dirname(__filename);
|
|
12
12
|
async function main() {
|
|
13
13
|
const args = process.argv.slice(2);
|
|
14
|
+
// Debug output to stderr so it doesn't interfere with CLI output
|
|
15
|
+
console.error(`[DEBUG] process.argv: ${JSON.stringify(process.argv)}`);
|
|
16
|
+
console.error(`[DEBUG] args: ${JSON.stringify(args)}`);
|
|
17
|
+
console.error(`[DEBUG] args.length: ${args.length}`);
|
|
14
18
|
if (args.length === 0) {
|
|
19
|
+
console.error("[DEBUG] No args - starting MCP server");
|
|
15
20
|
// No arguments, start MCP server
|
|
16
21
|
const isLocal = existsSync(join(__dirname, "../../mcp-server/dist/index.js"));
|
|
17
22
|
if (isLocal) {
|
|
@@ -26,6 +31,7 @@ async function main() {
|
|
|
26
31
|
}
|
|
27
32
|
}
|
|
28
33
|
else {
|
|
34
|
+
console.error("[DEBUG] Has args - starting CLI");
|
|
29
35
|
// Any arguments, run CLI
|
|
30
36
|
const { runCli } = await import("./cli.js");
|
|
31
37
|
runCli();
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemcp/knowledge-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Command-line interface for agentic knowledge web content management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/exports.js",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"typecheck": "tsc --noEmit"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@codemcp/knowledge-core": "^0.1.
|
|
36
|
-
"@codemcp/knowledge-content-loader": "^0.1.
|
|
37
|
-
"@codemcp/knowledge-mcp-server": "^0.1.
|
|
35
|
+
"@codemcp/knowledge-core": "^0.1.8",
|
|
36
|
+
"@codemcp/knowledge-content-loader": "^0.1.8",
|
|
37
|
+
"@codemcp/knowledge-mcp-server": "^0.1.8",
|
|
38
38
|
"commander": "^12.0.0",
|
|
39
39
|
"chalk": "^5.3.0",
|
|
40
40
|
"ora": "^8.0.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemcp/knowledge-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "MCP server implementation for agentic knowledge guidance system",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"typecheck": "tsc --noEmit"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@codemcp/knowledge-core": "^0.1.
|
|
36
|
+
"@codemcp/knowledge-core": "^0.1.8",
|
|
37
37
|
"@modelcontextprotocol/sdk": "^1.19.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|