Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Release

on:
push:
branches: main

workflow_dispatch:
inputs:
dry-run:
description: Dry run
required: false
default: false
type: boolean

permissions:
contents: write
id-token: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true


jobs:
release:
uses: cap-js/.github/.github/workflows/release.yml@main
secrets: inherit
with:
dry-run: ${{ fromJSON(github.event.inputs.dry-run || 'false') }}
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 - 2025-08-15

### Added

- Initial release
28 changes: 14 additions & 14 deletions package-lock.json

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

24 changes: 14 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
{
"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/",
"index.js"
],
"bin": {
"cds-mcp": "./index.js"
},
"scripts": {
"test": "node --test --test-concurrency=1",
"lint": "npx eslint ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"@sap/cds": "*",
"@sap/cds": "^9",
"onnxruntime-web": "^1.22.0"
},
"devDependencies": {
"@huggingface/transformers": "^3.7.1",
"prettier": "*"
},
"scripts": {
"test": "node --test --test-concurrency=1",
"lint": "npx eslint ."
}
}
Loading