-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@creader/mcp-server",
"version": "1.1.0",
"description": "MCP server for Creader — access your stories, knowledge base, and AI tools from any MCP client",
"license": "MIT",
"type": "module",
"bin": {
"creader-mcp": "dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run tests/unit",
"test:watch": "vitest tests/unit",
"test:integration": "vitest run tests/integration",
"test:coverage": "vitest run tests/unit --coverage",
"test:all": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.5",
"typescript": "^5.7.0",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"creader",
"writing",
"ai",
"knowledge-base",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "git+https://github.com/timothyshen/creader-mcp.git"
}
}