Mailchimp · Capability

Mailchimp Marketing API — Feed

Mailchimp Marketing API — Feed. 2 operations. Lead operation: Mailchimp Get Latest Chimp Chatter. Self-contained Naftiko capability covering one Mailchimp business surface.

Run with Naftiko MailchimpFeed

What You Can Do

GET
Getactivityfeedchimpchatter — Mailchimp Get Latest Chimp Chatter
/v1/activity-feed/chimp-chatter
GET
Getlistsidmembersidactivityfeed — Mailchimp View Recent Activity
/v1/lists/{list-id}/members/{subscriber-hash}/activity-feed

MCP Tools

mailchimp-get-latest-chimp-chatter

Mailchimp Get Latest Chimp Chatter

read-only idempotent
mailchimp-view-recent-activity

Mailchimp View Recent Activity

read-only idempotent

Capability Spec

marketing-feed.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Mailchimp Marketing API  — Feed
  description: 'Mailchimp Marketing API  — Feed. 2 operations. Lead operation: Mailchimp Get Latest Chimp Chatter. Self-contained
    Naftiko capability covering one Mailchimp business surface.'
  tags:
  - Mailchimp
  - Feed
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MAILCHIMP_API_KEY: MAILCHIMP_API_KEY
capability:
  consumes:
  - type: http
    namespace: marketing-feed
    baseUri: https://server.api.mailchimp.com/3.0
    description: Mailchimp Marketing API  — Feed business capability. Self-contained, no shared references.
    resources:
    - name: activity-feed-chimp-chatter
      path: /activity-feed/chimp-chatter
      operations:
      - name: getactivityfeedchimpchatter
        method: GET
        description: Mailchimp Get Latest Chimp Chatter
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: count
          in: query
          type: integer
          description: The number of records to return. Default value is 10. Maximum value is 1000
        - name: offset
          in: query
          type: integer
          description: Used for [pagination](https://mailchimp.com/developer/marketing/docs/methods-parameters/#pagination),
            this it the number of records from a collection to skip. D
    - name: lists-list_id-members-subscriber_hash-activity-feed
      path: /lists/{list_id}/members/{subscriber_hash}/activity-feed
      operations:
      - name: getlistsidmembersidactivityfeed
        method: GET
        description: Mailchimp View Recent Activity
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: list_id
          in: path
          type: string
          description: The unique ID for the list.
          required: true
        - name: subscriber_hash
          in: path
          type: string
          description: The MD5 hash of the lowercase version of the list member's email address. This endpoint also accepts
            a list member's email address or contact_id.
          required: true
        - name: fields
          in: query
          type: array
          description: A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
        - name: exclude_fields
          in: query
          type: array
          description: A comma-separated list of fields to exclude. Reference parameters of sub-objects with dot notation.
        - name: count
          in: query
          type: integer
          description: The number of records to return. Default value is 10. Maximum value is 1000
        - name: offset
          in: query
          type: integer
          description: Used for [pagination](https://mailchimp.com/developer/marketing/docs/methods-parameters/#pagination),
            this it the number of records from a collection to skip. D
        - name: activity_filters
          in: query
          type: array
          description: A comma-separated list of activity filters that correspond to a set of activity types, e.g "?activity_filters=open,bounce,click".
  exposes:
  - type: rest
    namespace: marketing-feed-rest
    port: 8080
    description: REST adapter for Mailchimp Marketing API  — Feed. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/activity-feed/chimp-chatter
      name: activity-feed-chimp-chatter
      description: REST surface for activity-feed-chimp-chatter.
      operations:
      - method: GET
        name: getactivityfeedchimpchatter
        description: Mailchimp Get Latest Chimp Chatter
        call: marketing-feed.getactivityfeedchimpchatter
        with:
          count: rest.count
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/lists/{list-id}/members/{subscriber-hash}/activity-feed
      name: lists-list-id-members-subscriber-hash-activity-feed
      description: REST surface for lists-list_id-members-subscriber_hash-activity-feed.
      operations:
      - method: GET
        name: getlistsidmembersidactivityfeed
        description: Mailchimp View Recent Activity
        call: marketing-feed.getlistsidmembersidactivityfeed
        with:
          list_id: rest.list_id
          subscriber_hash: rest.subscriber_hash
          fields: rest.fields
          exclude_fields: rest.exclude_fields
          count: rest.count
          offset: rest.offset
          activity_filters: rest.activity_filters
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: marketing-feed-mcp
    port: 9090
    transport: http
    description: MCP adapter for Mailchimp Marketing API  — Feed. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: mailchimp-get-latest-chimp-chatter
      description: Mailchimp Get Latest Chimp Chatter
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: marketing-feed.getactivityfeedchimpchatter
      with:
        count: tools.count
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: mailchimp-view-recent-activity
      description: Mailchimp View Recent Activity
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: marketing-feed.getlistsidmembersidactivityfeed
      with:
        list_id: tools.list_id
        subscriber_hash: tools.subscriber_hash
        fields: tools.fields
        exclude_fields: tools.exclude_fields
        count: tools.count
        offset: tools.offset
        activity_filters: tools.activity_filters
      outputParameters:
      - type: object
        mapping: $.