LangGraph · Capability

LangSmith Deployment Control Plane API — Agent Connections (v2)

LangSmith Deployment Control Plane API — Agent Connections (v2). 3 operations. Lead operation: List Connections. Self-contained Naftiko capability covering one Langgraph business surface.

Run with Naftiko LanggraphAgent Connections (v2)

What You Can Do

GET
Listconnectionsv2authagentsagentidconnectionsget — List Connections
/v1/v2/auth/agents/{agent-id}/connections
POST
Createconnectionv2authagentsagentidconnectionspost — Create Connection
/v1/v2/auth/agents/{agent-id}/connections
DELETE
Removeconnectionv2authagentsagentidconnectionsconnectioniddelete — Remove Connection
/v1/v2/auth/agents/{agent-id}/connections/{connection-id}

MCP Tools

list-connections

List Connections

read-only idempotent
create-connection

Create Connection

remove-connection

Remove Connection

idempotent

Capability Spec

langgraph-agent-connections-v2.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: LangSmith Deployment Control Plane API — Agent Connections (v2)
  description: 'LangSmith Deployment Control Plane API — Agent Connections (v2). 3 operations. Lead operation: List Connections.
    Self-contained Naftiko capability covering one Langgraph business surface.'
  tags:
  - Langgraph
  - Agent Connections (v2)
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LANGGRAPH_API_KEY: LANGGRAPH_API_KEY
capability:
  consumes:
  - type: http
    namespace: langgraph-agent-connections-v2
    baseUri: ''
    description: LangSmith Deployment Control Plane API — Agent Connections (v2) business capability. Self-contained, no shared
      references.
    resources:
    - name: v2-auth-agents-agent_id-connections
      path: /v2/auth/agents/{agent_id}/connections
      operations:
      - name: listconnectionsv2authagentsagentidconnectionsget
        method: GET
        description: List Connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: agent_id
          in: path
          type: string
          description: Agent ID
          required: true
      - name: createconnectionv2authagentsagentidconnectionspost
        method: POST
        description: Create Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: agent_id
          in: path
          type: string
          description: Agent ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v2-auth-agents-agent_id-connections-connection_id
      path: /v2/auth/agents/{agent_id}/connections/{connection_id}
      operations:
      - name: removeconnectionv2authagentsagentidconnectionsconnectioniddelete
        method: DELETE
        description: Remove Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: agent_id
          in: path
          type: string
          description: Agent ID
          required: true
        - name: connection_id
          in: path
          type: string
          description: Connection ID
          required: true
    authentication:
      type: apikey
      key: X-Api-Key
      value: '{{env.LANGGRAPH_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: langgraph-agent-connections-v2-rest
    port: 8080
    description: REST adapter for LangSmith Deployment Control Plane API — Agent Connections (v2). One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/v2/auth/agents/{agent-id}/connections
      name: v2-auth-agents-agent-id-connections
      description: REST surface for v2-auth-agents-agent_id-connections.
      operations:
      - method: GET
        name: listconnectionsv2authagentsagentidconnectionsget
        description: List Connections
        call: langgraph-agent-connections-v2.listconnectionsv2authagentsagentidconnectionsget
        with:
          agent_id: rest.agent_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createconnectionv2authagentsagentidconnectionspost
        description: Create Connection
        call: langgraph-agent-connections-v2.createconnectionv2authagentsagentidconnectionspost
        with:
          agent_id: rest.agent_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/auth/agents/{agent-id}/connections/{connection-id}
      name: v2-auth-agents-agent-id-connections-connection-id
      description: REST surface for v2-auth-agents-agent_id-connections-connection_id.
      operations:
      - method: DELETE
        name: removeconnectionv2authagentsagentidconnectionsconnectioniddelete
        description: Remove Connection
        call: langgraph-agent-connections-v2.removeconnectionv2authagentsagentidconnectionsconnectioniddelete
        with:
          agent_id: rest.agent_id
          connection_id: rest.connection_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: langgraph-agent-connections-v2-mcp
    port: 9090
    transport: http
    description: MCP adapter for LangSmith Deployment Control Plane API — Agent Connections (v2). One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-connections
      description: List Connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: langgraph-agent-connections-v2.listconnectionsv2authagentsagentidconnectionsget
      with:
        agent_id: tools.agent_id
      outputParameters:
      - type: object
        mapping: $.
    - name: create-connection
      description: Create Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: langgraph-agent-connections-v2.createconnectionv2authagentsagentidconnectionspost
      with:
        agent_id: tools.agent_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: remove-connection
      description: Remove Connection
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: langgraph-agent-connections-v2.removeconnectionv2authagentsagentidconnectionsconnectioniddelete
      with:
        agent_id: tools.agent_id
        connection_id: tools.connection_id
      outputParameters:
      - type: object
        mapping: $.