-
Notifications
You must be signed in to change notification settings - Fork 539
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.6 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
{
"name": "@erickwendel/customers-mcp",
"version": "0.0.2",
"description": "MCP server that exposes a customer CRUD API as tools for use with GitHub Copilot and other MCP-compatible agents",
"main": "index.js",
"bin": {
"customers-mcp": "./src/index.ts"
},
"files": [
"src"
],
"scripts": {
"build": "chmod 755 src/index.ts",
"start": "node src/index.ts",
"dev": "node --watch --inspect src/index.ts",
"test": "node --test tests/**/*.test.ts",
"mcp:inspect": "npx @modelcontextprotocol/inspector node src/index.ts",
"test:dev": "node --inspect --test --watch tests/**/*.test.ts",
"test:unit:dev": "node --inspect --test --watch tests/**/*unit.test.ts",
"test:unit": "node --inspect --test tests/**/*unit.test.ts",
"test:e2e:dev": "node --inspect --test --watch tests/**/*e2e.test.ts",
"test:e2e": "node --inspect --test tests/**/*e2e.test.ts",
"registry:start": "docker compose up -d",
"registry:stop": "docker compose down",
"registry:login:private": "npm login --registry http://localhost:4873",
"release:private": "npm version patch && npm publish --registry http://localhost:4873",
"registry:login:public": "npm login --registry https://registry.npmjs.org/",
"release:public": "npm version patch && npm publish --access public --registry https://registry.npmjs.org/"
},
"keywords": [],
"author": "erickwendel",
"license": "ISC",
"type": "module",
"engines": {
"node": "v24.14.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/node": "^24.11.0",
"tsx": "^4.21.0",
"zod": "^3.25.76"
}
}