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

# MCP Server

> Query and manage ZeroPath findings from MCP-compatible AI tools

ZeroPath's MCP Server lets AI tools like Claude Desktop and Cursor interact with your security findings. The server connects to ZeroPath's REST API and exposes operations as MCP tools, so you can triage issues, manage rules, and review scans using natural language.

<Info>
  Learn more about why we built this: **[Chat With Your AppSec Scans: Introducing the ZeroPath MCP Server](https://zeropath.com/blog/chat-with-your-appsec-scans)**
</Info>

## How It Works

<CardGroup cols={3}>
  <Card title="Tool Discovery" icon="radar">
    The server fetches available operations from ZeroPath's MCP manifest at startup and registers them as MCP tools with schemas and descriptions.
  </Card>

  <Card title="Request Forwarding" icon="arrow-right-arrow-left">
    When your AI assistant calls a tool, the server validates inputs, injects your organization context, and forwards the request to ZeroPath's REST API.
  </Card>

  <Card title="Structured Responses" icon="code">
    Results come back as JSON, ready for your AI tool to interpret and present to you.
  </Card>
</CardGroup>

## What You Can Do

<CardGroup cols={2}>
  <Card title="Issue Triage" icon="clipboard-check" href="/mcp/tools#issue-tools">
    List, filter, archive, and update issue status or severity directly from your AI assistant.
  </Card>

  <Card title="Rule Management" icon="gavel" href="/mcp/tools#rule-tools">
    Create, update, and delete custom security rules without leaving your editor.
  </Card>

  <Card title="Scan Visibility" icon="magnifying-glass" href="/mcp/tools#scan-tools">
    View scan history and drill into specific scan results.
  </Card>

  <Card title="Repository Context" icon="code-branch" href="/mcp/tools#repository-tools">
    List repositories and filter findings to specific parts of your codebase.
  </Card>
</CardGroup>

## End-to-end Flow

<Steps>
  <Step title="Connect">
    [Install the MCP server](/mcp/installation) and configure your MCP client (Claude Desktop, Cursor, etc.) with ZeroPath API credentials.
  </Step>

  <Step title="Discover">
    The server loads available tools from ZeroPath's MCP manifest. Your AI assistant sees all 15 tools with their schemas and descriptions.
  </Step>

  <Step title="Query">
    Ask your AI assistant questions like "show me critical issues in the backend repo" or "archive all false positives from last week's scan."
  </Step>

  <Step title="Act">
    The server translates your request into API calls, validates inputs, and returns structured results.
  </Step>
</Steps>

## Requirements

* Python 3.12+
* ZeroPath account with API key access
* MCP-compatible client (Claude Desktop, Cursor, or similar)

## Contributing

We welcome contributions from the security, AI, and developer tools communities:

* [Open an issue](https://github.com/ZeroPathAI/zeropath-mcp-server/issues) if you find a bug
* Submit a pull request to improve or add tools
* Join us on [Discord](https://discord.gg/Whukqkw3Qr) for feedback and questions

<Snippet file="getting-help.mdx" />
