smithery/neversight

jetbrains-skill

Use the JetBrains IDE MCP Server (IntelliJ IDEA 2025.2+) to let an external client drive IDE-backed actions: run Run Configurations, execute commands in the IDE terminal, read/create/edit project files, search via IDE indexes (text/regex), retrieve code inspections for a file, fetch symbol info, perform rename refactoring, list modules/dependencies/repos, open files in the editor, and reformat code.

Installation

$ npx skills add smithery/neversight --skill jetbrains-skill

Summary

  • Use the JetBrains IDE MCP Server (IntelliJ IDEA 2025.2+) to let an external client drive IDE-backed actions: run Run Configurations, execute commands in the IDE terminal, read/create/edit project files, search via IDE indexes (text/regex), retrieve code inspections for a file, fetch symbol info, perform rename refactoring, list modules/dependencies/repos, open files in the editor, and reformat code.
  • Use when you want IDE-grade indexing/refactoring/inspection instead of raw shell scripting.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,608 B
  • docs SUMMARY.md 517 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

JetBrains Skill

Quick start

Goal: use JetBrains IDE features (index, inspections, refactoring, run configurations, integrated terminal) as tools for an external client, while keeping changes auditable and safe.

notes + tool list (condensed): skills/jetbrains-skill/references/jetbrains-skill.md.

Connection & modes

Client setup (done in the IDE)

  • Settings → Tools → MCP Server
  • Enable MCP Server
  • Use “Auto-configure” for supported clients (updates their JSON config), or copy SSE / Stdio config for manual setup
  • Restart the external client to apply changes

Brave Mode (no confirmations)

The IDE can allow running shell commands / run configurations without per-action confirmation (“Brave mode”). This increases automation power but also increases risk. Require explicit user confirmation before enabling/disabling it.

Workflow decision tree

  1. Do I need IDE-grade analysis/refactoring?
  • File diagnostics: getfileproblems
  • Symbol semantics / docs: getsymbolinfo
  • Safe rename across project: rename_refactoring (prefer over plain text replace)
  • Indexed search: searchinfilesbytext / searchinfilesbyregex
  • Find files: findfilesbynamekeyword (fast, name-only) or findfilesby_glob (path glob)
  1. Do I just need file operations in the project?
  • Read file text: getfiletextbypath
  • Create file: createnewfile
  • Targeted replace: replacetextin_file (auto-saves)
  • Open in editor: openfilein_editor
  • Reformat: reformat_file
  1. Do I need to run something?
  • List run configs: getrunconfigurations
  • Run a config (wait for completion): executerunconfiguration
  • Run a terminal command in IDE: executeterminalcommand (may require confirmation; output is capped)

Constraints (avoid common mistakes)

  • Always pass projectPath when known to avoid ambiguity.
  • Many tools require paths relative to the project root and only operate on project files.
  • Line/column positions are 1-based for location-based tools.
  • Prefer controlling output with maxLinesCount + truncateMode; do not rely on defaults for large outputs.
  • Terminal commands and running configurations are high-risk; require explicit confirmation for any potentially destructive command. Brave Mode removes guardrails.

Recommended high-value patterns

Debug via inspections first

  1. getfileproblems to find errors/warnings → 2) getsymbolinfo to understand the code → 3) renamerefactoring for renames → 4) replacetextinfile only for truly textual changes.

Use indexed search for scale

Prefer searchinfilesbytext / searchinfilesbyregex since it uses IDE search/indexing and highlights matches with ||.

Running and output control

Use executerunconfiguration with a sane timeout (ms). For terminal commands use executeterminalcommand, but remember output caps; for huge output, redirect to a file and read it via file tools.

References

  • notes + tool list (condensed): skills/jetbrains-skill/references/jetbrains-skill.md