Skip to content
Open
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
17 changes: 17 additions & 0 deletions javascript/mcp-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,23 @@ npx forevervm-mcp install --claude

For other MCP clients, see [the docs](https://forevervm.com/docs/guides/forevervm-mcp-server/).

## Usage with Kiro

[![Add to Kiro](https://kiro.dev/images/add-to-kiro.svg)](https://kiro.dev/launch/mcp/add?name=forevervm&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22forevervm-mcp%22%2C%22run%22%5D%7D)

Or add the following to your Kiro MCP config file (`~/.kiro/settings/mcp.json` for global, or `.kiro/settings/mcp.json` for project-scoped). See the [Kiro MCP documentation](https://kiro.dev/docs/mcp/) for more details.

```json
{
"mcpServers": {
"forevervm": {
"command": "npx",
"args": ["-y", "forevervm-mcp", "run"]
}
}
}
```

## Installing locally (for development only)

In the MCP client, set the command to `npm` and the arguments to:
Expand Down