@cnbcool/mcp-server
Version:
CNB MCP Server. A comprehensive MCP server that provides seamless integration to the CNB's API(https://cnb.cool), offering a wide range of tools for repository management, pipelines operations and collaboration features
65 lines (64 loc) • 1.61 kB
JSON
{
"name": "@cnbcool/mcp-server",
"description": "CNB MCP Server. A comprehensive MCP server that provides seamless integration to the CNB's API(https://cnb.cool), offering a wide range of tools for repository management, pipelines operations and collaboration features",
"version": "0.3.0-beta.2",
"main": "./dist/index.js",
"bin": {
"cnb-mcp-server": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"prepare": "husky",
"lint": "eslint src",
"format": "prettier --check src"
},
"repository": {
"type": "git",
"url": "https://cnb.cool/cnb/tools/cnb-mcp-server"
},
"keywords": [
"cnb",
"cloud native build",
"model context protocol",
"mcp server"
],
"license": "MIT",
"files": [
"dist/",
"package.json",
"CHANGELOG.md",
"README.md"
],
"engines": {
"node": ">= 18",
"typescript": ">=5.5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.1",
"dotenv": "16.4.7",
"zod": "3.24.2"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@eslint/js": "9.24.0",
"@types/node": "22.13.9",
"eslint": "9.24.0",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-prettier": "5.2.6",
"globals": "16.0.0",
"husky": "9.1.7",
"lint-staged": "15.5.1",
"prettier": "3.5.3",
"typescript": "5.8.2",
"typescript-eslint": "8.30.1"
},
"lint-staged": {
"**/*": [
"eslint --fix src",
"prettier --write --ignore-unknown src"
]
}
}