Sign inSign up

hackerdogs/x8-mcp

By hackerdogs

•Updated 3 months ago

X8 MCP Server

Image
0

1.0K

hackerdogs/x8-mcp repository overview

Hackerdogs
hackerdogs ⁠

⁠X8 MCP Server

MCP server wrapper for X8⁠ — Hidden parameter discovery.

⁠What is X8?

X8 (x8) is a security tool that provides: Hidden parameter discovery.

See sh1yo/x8⁠ for full documentation.

No API keys required — X8 runs locally inside the Docker container.

Summary. MCP server wrapper for X8⁠ — Hidden parameter discovery.

Tools:

  • run_x8 — Run x8 with the given arguments. Returns structured JSON output.

⁠Tools Reference

⁠run_x8

Run x8 with the given arguments. Returns structured JSON output.

ParameterTypeRequiredDefaultDescription
argumentsstringYes—Command-line arguments (e.g. "--help")
timeout_secondsintegerNo600Maximum execution time in seconds
Example response
{
  "raw": "x8 output will appear here"
}

⁠Example Prompts

Here are example prompts you can use with Claude (or any MCP client) when this tool is connected:

  • "Run x8 with --help to see all available options."
  • "Use x8 to scan the target 192.168.1.1."
  • "What options does x8 support? Show me its help output."
  • "Run x8 against example.com with default settings."
  • "Execute x8 with verbose output enabled."
  • "Use the x8 tool to analyze the target and report findings."

⁠Deploy

docker-compose up -d
⁠Docker Run (stdio mode)
docker run -i --rm hackerdogs/x8-mcp:latest
⁠Docker Run (HTTP streamable mode)
docker run -d -p 8275:8275 \
  -e MCP_TRANSPORT=streamable-http \
  -e MCP_PORT=8275 \
  hackerdogs/x8-mcp:latest

⁠MCP Client Configuration

⁠Stdio mode (default)

Add to your Claude Desktop or Cursor MCP config:

{
  "mcpServers": {
    "x8-mcp": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT", "hackerdogs/x8-mcp:latest"],
      "env": {
        "MCP_TRANSPORT": "stdio"
      }
    }
  }
}
⁠HTTP mode (streamable-http)

First, start the server using Docker Compose or docker run with HTTP mode (see Deploy⁠ above), then point your MCP client at the running server:

{
  "mcpServers": {
    "x8-mcp": {
      "url": "http://localhost:8275/mcp"
    }
  }
}

When to use HTTP mode: HTTP mode is ideal for shared/remote deployments, multi-user setups, and Hackerdogs⁠ scheduled prompts. The server runs as a long-lived process and accepts connections from multiple MCP clients concurrently.

⁠Environment Variables

VariableDefaultDescription
MCP_TRANSPORTstdioTransport mode: stdio or streamable-http
MCP_PORT8275HTTP port (only used with streamable-http)

⁠Installing in Hackerdogs

The fastest way to get started is through Hackerdogs⁠:

  1. Log in to your Hackerdogs account.
  2. Go to the Tools Catalog.
  3. Search for the tool by name (e.g. "nuclei", "naabu", "julius").
  4. Expand the tool card and click Install — you're ready to go.

Give it a couple of minutes to go live. Then start querying by asking Hackerdogs to use the tool explicitly (e.g. "Use naabu to scan example.com"). If you don't specify, Hackerdogs will automatically choose the best tool for the job — it may choose this one on its own.

  1. Vendor API key required? Add your key in the config environment variable field before clicking Install. Your key will be encrypted at rest.
  2. Enable / Disable the tool anytime from the Enabled Tools page.
  3. Need to update a key or parameter? Go to My Tools → toggle Show Decrypted Values → edit → Save.

Want to contribute or chat with the team? Join our Discord⁠.

⁠Build

docker build -t hackerdogs/x8-mcp:latest .

⁠Testing

⁠Automated tests
./test.sh
⁠Test directly with Docker

1. Start the server in HTTP mode:

docker run -d --rm --name x8-mcp-test -p 8275:8275 \
  -e MCP_TRANSPORT=streamable-http \
  hackerdogs/x8-mcp:latest

2. Initialize the MCP session:

SESSION_ID=$(curl -s -D - -X POST http://localhost:8275/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"0.1"}}}' \
  2>&1 | grep -i mcp-session-id | awk '{print $2}' | tr -d '\r\n')

curl -s -X POST http://localhost:8275/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "mcp-session-id: $SESSION_ID" \
  -d '{"jsonrpc":"2.0","method":"notifications/initialized"}'

3. Call a tool:

curl -s -X POST http://localhost:8275/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "mcp-session-id: $SESSION_ID" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"run_x8","arguments":{"arguments":"--help"}}}'

4. Clean up:

docker stop x8-mcp-test

⁠Running the tool directly (bypassing MCP)

You can run the x8 CLI in the same container by overriding the entrypoint to find hidden parameters without starting the MCP server.

Show help:

docker run -i --rm --entrypoint x8 hackerdogs/x8-mcp:latest -h

Tag summary

Content type

Image

Digest

sha256:0763318f1…

Size

75.5 MB

Last updated

3 months ago

docker pull hackerdogs/x8-mcp