-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 982 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 982 Bytes
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
{
"name": "@codeguilds/mcp-server",
"version": "0.1.2",
"description": "MCP server for the CodeGuilds registry — lets Claude search and install skills, MCP servers, agents, hooks, and prompts mid-conversation",
"type": "module",
"main": "./dist/index.js",
"bin": {
"codeguilds-mcp": "dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts --format esm --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.17.57",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"keywords": [
"mcp",
"claude",
"claude-code",
"codeguilds",
"registry",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xdevsapps/codeguilds-mcp.git"
}
}