> ## Documentation Index
> Fetch the complete documentation index at: https://www.greptile.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Key Features

> Discover Greptile's key features: full codebase context, high-signal reviews, team learning, IDE integration via MCP, and enterprise-grade deployment options.

## Full codebase context

Greptile builds a graph of your repository (functions, classes, imports, dependencies) and uses it during reviews to reason about ripple effects beyond the diff.

* Surfaces impacted callers and contracts
* Detects cross-file inconsistencies and missing validations
* References similar patterns already in your codebase

Learn more: [Graph-based context](/how-greptile-works/graph-based-codebase-context)

## High-signal findings (not nitpicks)

Focus on issues that matter by default; control verbosity with strictness and comment-type filters.

* Logic, security, performance, architectural issues by default
* Style and syntax can be reduced or disabled
* Per-repository rules with `greptile.json`

See: [Controlling nitpickiness](/code-review/controlling-nitpickiness)

## Learns your team's standards

Greptile adapts over time using thumbs up/down and short replies.

* Suppresses suggestions your team routinely ignores
* Reinforces patterns your team prefers
* Auto-discovers custom rules from team discussions

See: [Memory and learning](/how-greptile-works/memory-and-learning)

## Fix All with AI

Every review comment includes a **Fix with your Agent** button that sends the issue — with file paths, line numbers, and suggested code — directly to your coding agent. A **Fix All** button in the review summary sends every issue at once.

* Supports Claude Code, OpenAI Codex, Conductor, Cursor, and Devin
* Agent receives full context and applies fixes automatically
* Comments resolve when you push the fix

<Frame>
  <img src="https://mintcdn.com/greptile/NbRtsLvWVCnO7zAK/images/fix-in-x-agent-prompt.png?fit=max&auto=format&n=NbRtsLvWVCnO7zAK&q=85&s=257d765bb3d0d472e496c7ada89585ee" alt="Claude Code receiving a detailed fix prompt from Greptile" width="1698" height="1692" data-path="images/fix-in-x-agent-prompt.png" />
</Frame>

Get started: [Fix with your Agent →](/integrations/fix-with-your-agent)

## Auto-resolution from your IDE (MCP)

Resolve Greptile comments without leaving your editor.

* Open files, apply suggested fixes, mark threads resolved
* Works with Cursor, Windsurf, Claude Desktop, Codex CLI

Get started: [Auto-resolve with MCP](/mcp-v2/overview)

## Enterprise-grade deployment

* Cloud (SOC2 Type II), self-hosted Docker/Kubernetes, air-gapped
* SSO/SAML, audit logging, role-based access
* Customer-managed PostgreSQL + pgvector, Redis (self-hosted)

See: [Self-hosting overview](/deployment-options)

## Configuration you control

Use `greptile.json` for repo-level behavior.

```json greptile.json theme={}
{
  "strictness": 2,
  "commentTypes": ["logic", "syntax", "style", "info"],
  "triggerOnUpdates": true,
  "ignorePatterns": "**/*.test.js\n**/vendor/**"
}
```

Reference: [greptile.json configuration](/code-review/greptile-json-reference)
