⚠️ DEPRECATION NOTICE: This tool will be discontinued by the end of February 2026.We are open sourcing this repository so that people can copy it if they want to continue using it. The source code will be available at: http://go.atlassian.com/connect-inspector
⚠️ ATLASSIAN CONNECT END OF SUPPORT NOTICEAtlassian Connect will reach end of support in December 2026. Learn more about the end of support timeline.
Migrate to Forge: You should already be migrating to Atlassian Forge. Forge provides similar functionality through event triggers:
The Atlassian Connect inspector allows you to generate temporary add-ons that you can install into you Cloud Development Environment and use to inspect the:
- Lifecycle events - See what happens when you install, enable, disable and uninstall an add-on.
- Webhook events - See what happens when any of the webhook events fire from the Atlassian Products. Like issue_updated or page_created.
Since the hosted version will be discontinued, you'll need to run it locally. This is a great way to inspect what messages are sent to Atlassian Connect add-ons and what the structure of their payloads will be.
Follow these steps to set up and use the connect-inspector locally:
First, you'll need to run the connect-inspector locally and make it accessible from the internet:
- Clone and set up the project (see Local Development section below for detailed steps)
- Start the application - it will be running on
http://localhost:8080 - Expose your local service using a tunneling tool like ngrok:
# Install ngrok if you haven't already npm install -g ngrok # Expose your local port 8080 ngrok http 8080 - Copy the public URL that ngrok provides (e.g.,
https://abc123.ngrok.io)
Now you can use the publicly accessible connect-inspector:
-
Navigate to your ngrok URL (e.g.,
https://abc123.ngrok.io) in your browser -
Click 'Create temporary add-on' to create a temporary add-on just for you
-
Copy the descriptor URL by clicking 'Copy descriptor to clipboard'
-
Navigate to your Atlassian Cloud development environment and go to the 'Manage add-ons' page
-
Install the add-on by clicking 'Upload add-on', pasting your descriptor URL, and clicking install
📝 Note: This step requires that you have enabled development mode in your Atlassian Cloud instance.
Once installed, return to your connect-inspector tab (the ngrok URL) and you'll start seeing events from your Atlassian Cloud environment flowing through in real-time. You should immediately see the installed and enabled events.
You can run it locally for development or your own use:
- Node.js (version specified in
.nvmrc) - Docker (for Redis)
- Install Node.js version:
nvm use - Install dependencies:
npm install - Start Redis (in one terminal):
docker run -p 6379:6379 redis - Start the application (in another terminal):
npm run grunt
The application will be available at http://localhost:8080.

