@yawlabs/nol-mcp 0.1.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/README.md +35 -0
- package/dist/index.js +31122 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@yawlabs/nol-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"mcpName": "io.github.YawLabs/nol-mcp",
|
|
5
|
+
"description": "nol MCP server — query your team's knowledge base (search, cited Q&A, spaces, pages) from AI assistants",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"author": "YawLabs <contact@yaw.sh>",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/YawLabs/nol-mcp.git"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"nol",
|
|
14
|
+
"knowledge-base",
|
|
15
|
+
"rag",
|
|
16
|
+
"mcp",
|
|
17
|
+
"model-context-protocol",
|
|
18
|
+
"ai",
|
|
19
|
+
"search",
|
|
20
|
+
"spaces",
|
|
21
|
+
"pages"
|
|
22
|
+
],
|
|
23
|
+
"type": "module",
|
|
24
|
+
"main": "dist/index.js",
|
|
25
|
+
"bin": {
|
|
26
|
+
"nol-mcp": "dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist/index.js",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsc && node build.mjs",
|
|
34
|
+
"dev": "tsc --watch",
|
|
35
|
+
"start": "node dist/index.js",
|
|
36
|
+
"test": "npm run build && node --test dist/tools/tools.test.js",
|
|
37
|
+
"test:ci": "npm run test",
|
|
38
|
+
"lint": "biome check src/",
|
|
39
|
+
"lint:fix": "biome check --write src/",
|
|
40
|
+
"prepublishOnly": "npm run build"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@biomejs/biome": "^2.4.12",
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
46
|
+
"@types/node": "^25.6.0",
|
|
47
|
+
"esbuild": "^0.28.0",
|
|
48
|
+
"typescript": "^6.0.3",
|
|
49
|
+
"zod": "^4.3.6"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=20"
|
|
53
|
+
}
|
|
54
|
+
}
|