Merge · Capability

Merge Chat API — Conversations

Merge Chat API — Conversations. 3 operations. Lead operation: Merge List Conversations. Self-contained Naftiko capability covering Microsoft Teams (and roadmap Slack) chat conversations.

Merge Chat API — Conversations is a Naftiko capability published by Merge, one of 73 capabilities the APIs.io network indexes for this provider. It bundles 3 operations.

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

Tagged areas include Merge, Chat, and Conversations.

Run with Naftiko MergeChatConversations

MCP Tools

merge-list-conversations

Merge List Conversations

read-only idempotent
merge-get-conversation

Merge Get Conversation

read-only idempotent
merge-list-conversation-members

Merge List Conversation Members

read-only idempotent

Capability Spec

chat-conversations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Merge Chat API — Conversations
  description: 'Merge Chat API — Conversations. 3 operations. Lead operation: Merge List Conversations. Self-contained Naftiko
    capability covering Microsoft Teams (and roadmap Slack) chat conversations.'
  tags:
  - Merge
  - Chat
  - Conversations
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    MERGE_API_KEY: MERGE_API_KEY
capability:
  consumes:
  - type: http
    namespace: chat-conversations
    baseUri: https://api.merge.dev/api/chat/v1
    description: Merge Chat API — Conversations business capability.
    resources:
    - name: conversations
      path: /conversations
      operations:
      - name: listconversations
        method: GET
        description: Merge List Conversations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: conversations-id
      path: /conversations/{id}
      operations:
      - name: getconversation
        method: GET
        description: Merge Get Conversation
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: conversations-members
      path: /conversations/{conversation_id}/members
      operations:
      - name: listconversationmembers
        method: GET
        description: Merge List Conversation Members
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.MERGE_API_KEY}}'
  exposes:
  - type: mcp
    namespace: chat-conversations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Merge Chat API — Conversations.
    tools:
    - name: merge-list-conversations
      description: Merge List Conversations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chat-conversations.listconversations
      outputParameters:
      - type: object
        mapping: $.
    - name: merge-get-conversation
      description: Merge Get Conversation
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chat-conversations.getconversation
      outputParameters:
      - type: object
        mapping: $.
    - name: merge-list-conversation-members
      description: Merge List Conversation Members
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chat-conversations.listconversationmembers
      outputParameters:
      - type: object
        mapping: $.