@gsb-core/backend-mcp
Version:
GSB MCP Server CLI for AI editors - supports environment variables and -y flag to skip prompts
65 lines (64 loc) • 1.55 kB
JSON
{
"name": "@gsb-core/backend-mcp",
"version": "0.1.35",
"description": "GSB MCP Server CLI for AI editors - supports environment variables and -y flag to skip prompts",
"main": "bin/server.js",
"bin": {
"gsb-mcp": "bin/server.js"
},
"type": "module",
"scripts": {
"start": "node bin/server.js",
"build": "mkdir -p dist && cp -r bin/* dist/ && cp -r src/* dist/ || true",
"prepare-pkg": "npm run build && node scripts/prepare-pkg.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gsb",
"mcp",
"ai",
"cli",
"backend",
"model-context-protocol"
],
"author": "GSB Team",
"license": "MIT",
"dependencies": {
"@gsb-core/mcp-docs": "^0.1.5",
"@gsb-core/mcp-tools": "^0.1.6",
"@modelcontextprotocol/sdk": "^1.11.1",
"@types/express": "^5.0.1",
"chalk": "^5.3.0",
"express": "^5.1.0",
"inquirer": "^9.2.15",
"ora": "^8.0.1",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"peerDependencies": {
"@gsb-core/core": "^0.0.59",
"@gsb-core/mcp-docs": "^0.1.5",
"@gsb-core/mcp-tools": "^0.1.6",
"@modelcontextprotocol/sdk": "^1.11.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/yargs": "^17.0.32"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/your-github-username/gsb-mcp-cli.git"
},
"files": [
"bin",
"dist",
"README.md"
]
}