chore: rename package

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-06-17 10:17:24 +02:00
parent 2c4e277c44
commit 976951d012
17 changed files with 21 additions and 21 deletions
+28
View File
@@ -0,0 +1,28 @@
# MCP Backend
This plugin backend was templated using the Backstage CLI. You should replace this text with a description of your plugin backend.
## Installation
This plugin is installed via the `@backstage/plugin-mcp-actions-backend` package. To install it to your backend package, run the following command:
```bash
# From your root directory
yarn --cwd packages/backend add @backstage/plugin-mcp-actions-backend
```
Then add the plugin to your backend in `packages/backend/src/index.ts`:
```ts
const backend = createBackend();
// ...
backend.add(import('@backstage/plugin-mcp-actions-backend'));
```
## Development
This plugin backend can be started in a standalone mode from directly in this
package with `yarn start`. It is a limited setup that is most convenient when
developing the plugin backend itself.
If you want to run the entire project, including the frontend, run `yarn start` from the root directory.