Merge · Capability

Merge Agent Handler — Connectors

Merge Agent Handler — Connectors. 2 operations. Lead operation: List Connectors. Self-contained capability surfacing the catalog of pre-built integrations available to AI agents.

Merge Agent Handler — Connectors is a Naftiko capability published by Merge, one of 73 capabilities the APIs.io network indexes for this provider. It bundles 2 operations.

The capability includes 2 read-only operations. Lead operation: List Connectors. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Merge, Agent Handler, Connectors, and MCP.

Run with Naftiko MergeAgent HandlerConnectorsMCP

MCP Tools

ah-list-connectors

List Connectors

read-only idempotent
ah-get-connector

Get Connector by Slug

read-only idempotent

Capability Spec

agent-handler-connectors.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Merge Agent Handler — Connectors
  description: 'Merge Agent Handler — Connectors. 2 operations. Lead operation: List Connectors. Self-contained capability
    surfacing the catalog of pre-built integrations available to AI agents.'
  tags:
  - Merge
  - Agent Handler
  - Connectors
  - MCP
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    MERGE_AH_API_KEY: MERGE_AH_API_KEY
capability:
  consumes:
  - type: http
    namespace: agent-handler-connectors
    baseUri: https://ah-api.merge.dev/api/v1
    description: Merge Agent Handler — Connectors business capability. Exposes connector catalog for agentic tool-use.
    resources:
    - name: connectors
      path: /connectors/
      operations:
      - name: listconnectors
        method: GET
        description: List Connectors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: connectors-slug
      path: /connectors/{slug}/
      operations:
      - name: getconnector
        method: GET
        description: Get Connector by Slug
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.MERGE_AH_API_KEY}}'
  exposes:
  - type: mcp
    namespace: agent-handler-connectors-mcp
    port: 9090
    transport: http
    description: MCP adapter for Merge Agent Handler — Connectors.
    tools:
    - name: ah-list-connectors
      description: List Connectors
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-handler-connectors.listconnectors
      outputParameters:
      - type: object
        mapping: $.
    - name: ah-get-connector
      description: Get Connector by Slug
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-handler-connectors.getconnector
      outputParameters:
      - type: object
        mapping: $.