Native JetBrains plugin that brings Akeyless Agentic Runtime Authority (ARA) to PyCharm, IntelliJ IDEA, WebStorm, and other IntelliJ-based IDEs.
The IDE orchestrates. Akeyless holds the credentials. Secret values never enter the UI or logs.
This matches the tools and auth model of the Claude Desktop connector, implemented in Kotlin — no Akeyless CLI or Node required for core use.
Related (different product): the Akeyless MCP plugin browses secrets via the CLI MCP server. This ARA plugin executes
list-secrets/query-db/service-executethrough the Gateway with JIT credentials.
- list-secrets — discover ARA-enabled dynamic, rotated, and custom-MCP secrets
- query-db — run database queries via Gateway JIT credentials
- service-execute — AWS, GCP, Azure, Kubernetes, GitHub, or custom MCP actions
- list-sub-tools — discover sub-tools for a service secret
- Settings UI — Gateway URL + auth method (Access Key / JWT stored in PasswordSafe)
- SAML / OIDC — browser login on first use
- JetBrains IDE 2024.3 or later (PyCharm, IntelliJ IDEA, etc.)
- JDK 17 or higher to build from source
- Akeyless Gateway with ARA configured
- Network access to your Gateway
git clone https://github.com/akeyless-community/pycharm-ara-plugin.git
cd pycharm-ara-plugin
./gradlew buildPluginThen in the IDE:
- Settings → Plugins → ⚙ → Install Plugin from Disk…
- Select the ZIP from
build/distributions/ - Restart when prompted
- Ensure the plugin is enabled
./gradlew runIdeSettings → Tools → Akeyless ARA
(or Tools → Akeyless ARA Settings…)
| Field | Notes |
|---|---|
| Gateway URL | e.g. https://gw.example.com:8000/api/v2 |
| Authentication Method | access_key (default), saml, oidc, universal_identity, jwt |
| Access ID | Required for access_key, saml, oidc, jwt |
| Access Key | Required for access_key — stored in PasswordSafe |
| UID Token File | Required for universal_identity (default ~/.akeyless/uid_rotator/uid-token) |
| JWT | Required for jwt — stored in PasswordSafe |
| Agent ID | ARA audit id (default pycharm) |
| Default secret path | Optional |
Cloud IAM (aws_iam / azure_ad / gcp) is deferred to a later release.
The first authenticated call opens your browser. Complete IdP login; the plugin receives the callback on 127.0.0.1.
- Open Tools → Show Akeyless ARA (or View → Tool Windows → Akeyless ARA)
- Click Refresh secrets
- Use Query DB, Service Execute, or List Sub-Tools tabs
If a call returns an authorization URL, open it, then paste auth-code (state is pre-filled) and retry.
sequenceDiagram
participant User as User
participant UI as Akeyless ARA tool window
participant Ara as AraClient (Kotlin)
participant API as Akeyless API /api/v2
participant GW as Gateway config port
participant Target as DB / Cloud
User->>UI: list-secrets / query-db / service-execute
UI->>Ara: call with settings
Ara->>API: auth + list-items
API-->>Ara: paths + types
Ara->>GW: POST /config/target_query
GW->>Target: JIT credentials
Target-->>GW: results
GW-->>Ara: JSON (no credentials)
Ara-->>UI: results only
./gradlew check
./gradlew buildPluginSee PUBLISHING.md.
pycharm-ara-plugin/
├── src/main/kotlin/com/akeyless/ara/
│ ├── client/ # ARA HTTP client (auth, list, query, execute)
│ ├── settings/ # Settings + PasswordSafe
│ ├── ui/ # Tool window
│ ├── actions/ # Tools menu actions
│ └── icons/
├── src/main/resources/META-INF/
│ ├── plugin.xml
│ └── pluginIcon.*
├── src/test/kotlin/
├── PUBLISHING.md
└── build.gradle.kts
- Claude ARA connector
- Cursor ARA connector
- Akeyless MCP JetBrains plugin (secrets browser)
MIT — see LICENSE.
- Plugin issues: https://github.com/akeyless-community/pycharm-ara-plugin/issues
- Akeyless docs: https://docs.akeyless.io/docs/agentic-runtime-authority