-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "microcms-mcp-server",
"version": "0.9.0",
"description": "microCMS MCP Bundle - microCMSのコンテンツAPIやマネジメントAPIを利用し、LLMからコンテンツ管理ができるMCP Bundle",
"main": "dist/index.js",
"type": "module",
"bin": {
"microcms-mcp-server": "bin/microcms-mcp-server.js"
},
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:http": "node dist/index.js --transport http",
"start:args": "node dist/index.js --service-id your-service-id --api-key your-api-key",
"dev": "tsc --watch & node --watch dist/index.js",
"lint": "biome lint src/",
"format": "biome format --write src/",
"check": "biome check src/",
"check:fix": "biome check --write src/",
"prepublishOnly": "npm run build",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"mcp",
"mcpb",
"microcms",
"model-context-protocol",
"ai",
"claude",
"cms",
"headless-cms",
"bundle"
],
"author": {
"name": "microcmsio",
"url": "https://github.com/microcmsio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microcmsio/microcms-mcp-server.git"
},
"bugs": {
"url": "https://github.com/microcmsio/microcms-mcp-server/issues"
},
"homepage": "https://github.com/microcmsio/microcms-mcp-server#readme",
"license": "MIT",
"dependencies": {
"@hono/mcp": "^0.2.3",
"@hono/node-server": "^1.19.9",
"@modelcontextprotocol/sdk": "^1.27.0",
"hono": "^4.12.0",
"microcms-js-sdk": "^3.1.2"
},
"devDependencies": {
"@biomejs/biome": "2.3.4",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}