# MCP Server

The HackenProof MCP (Model Context Protocol) server connects AI assistants like Claude Code and Claude Desktop to the HackenProof bug bounty dashboard. It enables AI-assisted triage — reading reports, changing states, setting severity, posting comments, managing labels, and batch operations — all through structured tool calls.

### Quick Start

#### 1. Get your credentials

**API Key** — get it from your HackenProof dashboard[ account settings](https://dashboard.hackenproof.com/user/profile).

<figure><img src="/files/lbY0KqcHrlfDyovoddDy" alt=""><figcaption></figcaption></figure>

#### 2. Add the MCP server to your config

**Claude Code** — add to `.mcp.json` in your project root, or `~/.claude/.mcp.json` globally:

```
{
  "mcpServers": {
    "hackenproof": {
      "type": "http",
      "url": "https://mcp.hackenproof.com/mcp",
      "headers": {
        "X-Api-Key": "YOUR_API_KEY"
      }
    }
  }
}
```

**Claude Desktop** — add to Settings → Developer → MCP Servers.

#### 3. Verify connection

In Claude Code, run `/mcp` to see the server listed. Then try:

> "List my companies on HackenProof"


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hackenproof.com/dashboard/mcp-server.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
