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

# Delete MCP Connection

> Connections to external systems that AI agents can call tools against.

A connection is created as a draft pinned to the connector's current version. Fill its
credentials directly with ``config``, or mint a setup link and let a third party fill
them in their own browser; then ``PATCH {"active": true}`` to put it in service. Each
connector may hold several connections, one per account you connect, each with its own
slug — which is also the namespace its tools are exposed under.

On plans with access control, visibility and writes follow the access granted on each
connection: viewers see it, editors edit its description and tags, managers change
everything else — configuration, state, slug, the exposed tools, setup links and
disconnection. Admins and owners always have full access.



## OpenAPI

````yaml DELETE /api/v1/live-connections/{slug}/
openapi: 3.0.3
info:
  title: Nekt API
  version: v1
  description: Nekt API Documentation
  contact:
    email: support@nekt.ai
servers:
  - url: https://api.nekt.ai
security: []
paths:
  /api/v1/live-connections/{slug}/:
    delete:
      tags:
        - v1
      description: >-
        Connections to external systems that AI agents can call tools against.


        A connection is created as a draft pinned to the connector's current
        version. Fill its

        credentials directly with ``config``, or mint a setup link and let a
        third party fill

        them in their own browser; then ``PATCH {"active": true}`` to put it in
        service. Each

        connector may hold several connections, one per account you connect,
        each with its own

        slug — which is also the namespace its tools are exposed under.


        On plans with access control, visibility and writes follow the access
        granted on each

        connection: viewers see it, editors edit its description and tags,
        managers change

        everything else — configuration, state, slug, the exposed tools, setup
        links and

        disconnection. Admins and owners always have full access.
      operationId: v1_live_connections_destroy
      parameters:
        - in: path
          name: slug
          schema:
            type: string
            description: >-
              Stable identifier and tool namespace; globally unique. Defaults to
              the connector slug (uniquified) when left blank.
          required: true
      responses:
        '204':
          description: No response body
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````