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
19 changes: 13 additions & 6 deletions package-lock.json

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

22 changes: 13 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
{
"name": "@cap-js/mcp-server",
"version": "0.1.0",
"keywords": [],
"version": "0.0.1",
"description": "Model Context Protocol (MCP) server for AI-assisted development 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",
"description": "Model Context Protocol (MCP) server for AI-assisted development of CAP applications.",
"type": "module",
"files": [
"index.js",
"lib/"
"lib",
"CHANGELOG.md"
],
"bin": {
"cds-mcp": "./index.js"
},
"scripts": {
"test": "node --test --test-concurrency=1",
"lint": "npx eslint ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"@sap/cds": "*",
Expand All @@ -21,9 +29,5 @@
"devDependencies": {
"@huggingface/transformers": "^3.7.1",
"prettier": "*"
},
"scripts": {
"test": "node --test --test-concurrency=1",
"lint": "npx eslint ."
}
}
Loading