Adafruit IO · Arazzo Workflow

Adafruit IO Attach Feed to Group

Version 1.0.0

Add an existing feed to a group, then list the group's feeds to confirm membership.

1 workflow 1 source API 1 provider
View Spec View on GitHub IoTInternet of ThingsMQTTMakerHobbyistCircuitPythonArduinoESP32FeatherDashboardsTime SeriesArazzoWorkflows

Provider

adafruit-io

Workflows

attach-feed-to-group
Add an existing feed to a group and verify it appears in the group's feed list.
Adds a feed to a group by feed key, then reads back the group's feeds to confirm the attachment succeeded.
2 steps inputs: aioKey, feedKey, groupKey, username outputs: feedKey, firstFeedKey, groupKey
1
addFeed
Add the existing feed to the group, identifying the feed via the feed_key query parameter.
2
verifyMembership
List all feeds in the group to confirm the newly attached feed is present.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adafruit IO Attach Feed to Group
  summary: Add an existing feed to a group, then list the group's feeds to confirm membership.
  description: >-
    Reorganizes an existing feed into a group. The workflow adds an already
    created feed to a group by feed key, then lists every feed in that group so
    the caller can confirm the feed now belongs to it. Useful when consolidating
    standalone feeds under a shared group namespace. Every step spells out its
    request inline — including the username path parameter and the X-AIO-Key
    authentication header.
  version: 1.0.0
sourceDescriptions:
- name: feedsApi
  url: ../openapi/adafruit-io-feeds-api-openapi.yml
  type: openapi
workflows:
- workflowId: attach-feed-to-group
  summary: Add an existing feed to a group and verify it appears in the group's feed list.
  description: >-
    Adds a feed to a group by feed key, then reads back the group's feeds to
    confirm the attachment succeeded.
  inputs:
    type: object
    required:
    - username
    - aioKey
    - groupKey
    - feedKey
    properties:
      username:
        type: string
        description: A valid Adafruit IO username.
      aioKey:
        type: string
        description: The Adafruit IO API key, sent in the X-AIO-Key header.
      groupKey:
        type: string
        description: The key of the group to attach the feed to.
      feedKey:
        type: string
        description: The key of the existing feed to add to the group.
  steps:
  - stepId: addFeed
    description: >-
      Add the existing feed to the group, identifying the feed via the feed_key
      query parameter.
    operationId: addFeedToGroup
    parameters:
    - name: username
      in: path
      value: $inputs.username
    - name: group_key
      in: path
      value: $inputs.groupKey
    - name: feed_key
      in: query
      value: $inputs.feedKey
    - name: X-AIO-Key
      in: header
      value: $inputs.aioKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupId: $response.body#/id
  - stepId: verifyMembership
    description: >-
      List all feeds in the group to confirm the newly attached feed is present.
    operationId: allGroupFeeds
    parameters:
    - name: username
      in: path
      value: $inputs.username
    - name: group_key
      in: path
      value: $inputs.groupKey
    - name: X-AIO-Key
      in: header
      value: $inputs.aioKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstFeedKey: $response.body#/0/key
  outputs:
    groupKey: $inputs.groupKey
    feedKey: $inputs.feedKey
    firstFeedKey: $steps.verifyMembership.outputs.firstFeedKey

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/adafruit-io-attach-feed-to-group-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.