@cognistore/mcp-server 0.9.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/dist/index.js +1757 -0
- package/package.json +42 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cognistore/mcp-server",
|
|
3
|
+
"version": "0.9.8",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "MCP server for CogniStore — integrates with Claude Code and GitHub Copilot",
|
|
7
|
+
"license": "BUSL-1.1",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/Sithion/cognistore",
|
|
11
|
+
"directory": "apps/mcp-server"
|
|
12
|
+
},
|
|
13
|
+
"main": "./dist/index.js",
|
|
14
|
+
"bin": {
|
|
15
|
+
"cognistore-mcp": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "pnpm build:deps && tsup",
|
|
22
|
+
"build:deps": "pnpm --filter @cognistore/shared build && pnpm --filter @cognistore/core build && pnpm --filter @cognistore/embeddings build && pnpm --filter @cognistore/sdk build",
|
|
23
|
+
"dev": "tsx src/index.ts",
|
|
24
|
+
"clean": "rm -rf dist",
|
|
25
|
+
"test": "if find . -name '*.test.ts' -o -name '*.spec.ts' | grep -q .; then npx playwright test; else echo 'No tests found, skipping'; fi"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
29
|
+
"better-sqlite3": "^12.8.0",
|
|
30
|
+
"drizzle-orm": "^0.38.0",
|
|
31
|
+
"sqlite-vec": "^0.1.7",
|
|
32
|
+
"zod": "^3.23.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@cognistore/sdk": "workspace:*",
|
|
36
|
+
"@cognistore/shared": "workspace:*",
|
|
37
|
+
"@playwright/test": "^1.50.0",
|
|
38
|
+
"tsup": "^8.5.1",
|
|
39
|
+
"tsx": "^4.0.0",
|
|
40
|
+
"typescript": "^5.7.0"
|
|
41
|
+
}
|
|
42
|
+
}
|