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

# Summarize audit report for MCP

> Generates concise findings from a structured audit object using MCP-allowlisted models.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/mcp/summarize-audit
openapi: 3.1.0
info:
  title: Neosantara AI API
  description: OpenAI-compatible LLM Gateway
  version: 1.0.0
servers:
  - url: https://api.neosantara.xyz
    description: Neosantara Production Gateway
security:
  - bearerAuth: []
paths:
  /v1/mcp/summarize-audit:
    post:
      tags:
        - MCP
      summary: Summarize audit report for MCP
      description: >-
        Generates concise findings from a structured audit object using
        MCP-allowlisted models.
      operationId: postV1McpSummarizeAudit
      responses:
        '200':
          description: Audit summary generated
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    const: mcp_audit_summary
                  model:
                    type: string
                  summary:
                    type: string
                  usage:
                    type: 'null'
                required:
                  - object
                  - model
                  - summary
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````

## Related topics

- [Run web audit for MCP](/api-reference/mcp/run-web-audit-for-mcp.md)
- [API Key MCP](/id/agents/mcp-keys.md)
- [Integrasi Cursor](/id/agents/cursor.md)
- [Kebijakan Penggunaan Coding Plan](/id/coding-plan/usage-policy.md)
- [Ringkasan Gateway](/id/gateway/overview.md)
