@codemcp/knowledge-server 2.0.1
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/LICENSE +8 -0
- package/dist/bin.js +10 -0
- package/dist/chunk-X4Y5KMDB.js +7537 -0
- package/dist/es-IAIIHFQR.js +1812 -0
- package/dist/index.js +10 -0
- package/package.json +64 -0
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codemcp/knowledge-server",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Lightweight MCP server for agentic knowledge guidance",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"ade-knowledge-server": "dist/bin.js"
|
|
10
|
+
},
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@modelcontextprotocol/sdk": "^1.19.1",
|
|
25
|
+
"adm-zip": "0.5.16"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@eslint/js": "^9.34.0",
|
|
29
|
+
"@types/node": "^24.3.0",
|
|
30
|
+
"eslint": "^9.34.0",
|
|
31
|
+
"rimraf": "^6.0.1",
|
|
32
|
+
"tsup": "^8.0.0",
|
|
33
|
+
"typescript": "^5.9.2",
|
|
34
|
+
"vitest": "^3.2.4",
|
|
35
|
+
"@codemcp/knowledge-content-loader": "2.0.1",
|
|
36
|
+
"@codemcp/knowledge-core": "2.0.1"
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"agentic",
|
|
40
|
+
"knowledge",
|
|
41
|
+
"mcp",
|
|
42
|
+
"server",
|
|
43
|
+
"guidance"
|
|
44
|
+
],
|
|
45
|
+
"author": "Oliver Jägle <github@beimir.net>",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"scripts": {
|
|
48
|
+
"build": "tsup",
|
|
49
|
+
"build:tsc": "tsc -p tsconfig.build.json",
|
|
50
|
+
"build:watch": "tsc -p tsconfig.build.json --watch",
|
|
51
|
+
"clean": "rimraf dist",
|
|
52
|
+
"clean:build": "rimraf dist",
|
|
53
|
+
"dev": "tsc -p tsconfig.build.json --watch",
|
|
54
|
+
"start": "node dist/bin.js",
|
|
55
|
+
"lint": "oxlint && eslint .",
|
|
56
|
+
"lint:fix": "oxlint --fix && eslint . --fix",
|
|
57
|
+
"format:check": "prettier --check .",
|
|
58
|
+
"format:fix": "prettier --write .",
|
|
59
|
+
"test": "vitest run",
|
|
60
|
+
"test:watch": "vitest",
|
|
61
|
+
"test:coverage": "vitest run --coverage",
|
|
62
|
+
"typecheck": "tsc --noEmit"
|
|
63
|
+
}
|
|
64
|
+
}
|