Skip to content
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
The format is based on [Keep a Changelog](http://keepachangelog.com/).

## Version 0.0.1 - tbd

### Added

- Initial release
128 changes: 4 additions & 124 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 18 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,35 @@
{
"name": "@cap-js/mcp-server",
"version": "0.1.0",
"keywords": [],
"author": "",
"license": "ISC",
"description": "A simple MCP server for CAP",
"version": "0.0.1",
"description": "Model Context Protocol (MCP) server for AI-assisted development (vibe coding) of CAP applications.",
"repository": {
"type": "git",
"url": "git+https://github.com/cap-js/mcp-server.git"
},
"author": "SAP SE (https://www.sap.com)",
"homepage": "https://cap.cloud.sap/",
"license": "Apache-2.0",
"type": "module",
"files": [
"index.js",
"docs/",
"models/",
"lib/"
"docs",
"lib",
"models",
"CHANGELOG.md",
"index.js"
],
"bin": {
"cds-mcp": "./index.js"
},
"scripts": {
"test": "node --test",
"lint": "npx eslint ."
},
"dependencies": {
"@huggingface/transformers": "^3.7.1",
"@modelcontextprotocol/sdk": "^1.8.0",
"@sap/cds": "*"
},
"devDependencies": {
"prettier": "*"
},
"scripts": {
"test": "node --test",
"lint": "npx eslint ."
}
}