From 06d23e11ff5f2a2d728efed90f4f96d975eaa672 Mon Sep 17 00:00:00 2001 From: Rolando Rojas <31487237+rolandorojas@users.noreply.github.com> Date: Thu, 28 Aug 2025 09:20:00 -0400 Subject: [PATCH 1/2] Update README.md to include instructions for Junie --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index 1746bb1..126f92d 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,33 @@ Using npx (recommended): Or using a local development installation - see CONTRIBUTING.md. +## Junie + +Configure your `.junie/mcp/mcp.json` as follows: + +Using npx (recommended): + +``` +{ + "servers": { + "rollbar": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "@rollbar/mcp-server@latest" + ], + "env": { + "ROLLBAR_ACCESS_TOKEN": "" + } + } + } +} +``` + +Or using a local development installation - see CONTRIBUTING.md. + + ### VS Code Configure your `.vscode/mcp.json` as follows: @@ -83,3 +110,4 @@ Using npx (recommended): ``` Or using a local development installation - see CONTRIBUTING.md. + From b223762b63dd6476e87d79e00463c9254faf32f8 Mon Sep 17 00:00:00 2001 From: Rolando Rojas <31487237+rolandorojas@users.noreply.github.com> Date: Thu, 28 Aug 2025 09:21:56 -0400 Subject: [PATCH 2/2] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 126f92d..decac4e 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Using npx (recommended): ``` { - "servers": { + "mcpServers": { "rollbar": { "type": "stdio", "command": "npx",