-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.03 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.03 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
{
"name": "@abtasty/mcp-server",
"version": "0.3.0",
"description": "Model Context Protocol server for AB Tasty Feature Experimentation & Rollouts platform",
"main": "index.js",
"type": "module",
"bin": "build/cli.js",
"files": [
"build",
"prompts"
],
"scripts": {
"generate:prompts": "tsx scripts/generate-prompts.ts",
"prebuild": "npm run generate:prompts",
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=build/index.js --external:@modelcontextprotocol/sdk --external:axios --external:express --external:@flagship.io/js-sdk --packages=external && esbuild src/cli.ts --bundle --platform=node --format=esm --outfile=build/cli.js --external:@modelcontextprotocol/sdk --external:axios --external:express --external:@flagship.io/js-sdk --packages=external && chmod 755 build/index.js build/cli.js && cp -r assistant-prompts build/",
"start": "node ./build/index.js",
"start:cli": "node build/cli.js",
"dev": "npm run build && npm run start",
"dev:cli": "npm run build && node npm run start:cli",
"prepublishOnly": "npm run build",
"publish:npm": "npm publish --access public"
},
"keywords": [
"mcp",
"model-context-protocol",
"ab-tasty",
"flagship",
"feature-flags",
"experimentation",
"rollouts",
"feature-management",
"typescript",
"ai-assistant"
],
"author": "AB Tasty",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flagship-io/mcp-server.git"
},
"bugs": {
"url": "https://github.com/flagship-io/mcp-server/issues"
},
"homepage": "https://github.com/flagship-io/mcp-server#readme",
"dependencies": {
"@abtasty/codebase-analyzer-typescript": "^0.1.0",
"@flagship.io/js-sdk": "^5.1.6",
"@modelcontextprotocol/sdk": "^1.20.1",
"axios": "^1.12.2",
"express": "^5.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^5.0.4",
"@types/node": "^24.10.1",
"esbuild": "^0.25.11",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}