acunetix-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ACUNETIX_EMAIL | No | Email for session login. | |
| ACUNETIX_API_KEY | No | Official API Key (recommended). Generate from your Acunetix profile. | |
| ACUNETIX_BASE_URL | No | Base URL of the Acunetix server. | https://localhost:3443 |
| ACUNETIX_PASSWORD | No | Password for session login. | |
| ACUNETIX_VERIFY_SSL | No | Whether to verify SSL certificate. Set to 'false' for self-signed certs. | false |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| acunetix_loginA | 【会话登录】登录 Acunetix 系统并建立会话(方式二)。
|
| acunetix_use_api_keyA | 【官方推荐认证】使用 Profile 页生成的 API Key 认证(方式一)。
|
| acunetix_logoutA | 登出并清理本地会话。 |
| acunetix_meB | 获取当前登录用户信息(GraphQL)。 |
| acunetix_gqlA | 【通用 GraphQL 执行器】—— 大模型自主操作的核心通道。 向 /graphql/ 发送任意已确认可用的 query/mutation。
|
| acunetix_restB | 【通用 REST 调用器】访问 /api/v1/* 端点。
|
| acunetix_list_targetsB | 列出扫描目标(GET /api/v1/targets?l=N),含地址/ID/漏洞计数。 |
| acunetix_get_targetA | 获取单个目标详情(GET /api/v1/targets/{id})。 |
| acunetix_list_scansB | 列出扫描任务(GET /api/v1/scans?l=N)。 |
| acunetix_list_vulnerabilitiesB | 列出漏洞(GET /api/v1/vulnerabilities?l=N)。 |
| acunetix_list_reportsA | 列出已生成报告(GET /api/v1/reports?l=N)。 |
| acunetix_list_scan_profilesA | 列出扫描配置(GET /api/v1/scanning_profiles),用于启动扫描时选 profile。 |
| acunetix_statsA | 当前用户统计(GET /api/v1/me/stats):扫描/目标/漏洞汇总。 |
| acunetix_add_targetA | 【写操作】新增扫描目标(POST /api/v1/targets)。
|
| acunetix_start_scanA | 【写操作】对目标启动扫描(POST /api/v1/scans)。
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 15 tools
Most tools are clearly distinct (list_targets vs add_target vs start_scan), but acunetix_rest and acunetix_gql are generic executors that overlap with the specific list/get tools. The descriptions clarify their generic purpose, but an agent may still be uncertain whether to use the specific or generic tool for a given operation.
All tools share the acunetix_ prefix, but naming patterns vary: some are verb-only (login, logout), some are nouns (me, gql, rest, stats), and some are verb_noun (list_targets, add_target). This mixed convention is still readable but not fully consistent.
15 tools is within the typically well-scoped range, but the set feels slightly heavier because generic executors (acunetix_rest, acunetix_gql) are included alongside specific wrappers for the same endpoints. Each tool has some justification, though some redundancy exists.
Core workflows are covered: add target, start scan, list vulnerabilities, and list reports. However, there are no dedicated update/delete tools for targets or scans. The generic REST and GraphQL executors fill these gaps, so agents can work around them, but the dedicated tool surface is not fully complete.