{
  "info": {
    "name": "Adafruit IO — mcp.ai",
    "description": "REST API for the Adafruit IO MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/adafruit_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "adafruit_io_add_feeds_to_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/feeds/to/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "feeds",
            "to",
            "group"
          ]
        },
        "description": "Sequentially add 1-10 existing feeds to one group using one documented provider request per feed. This is non-atomic: processing stops after the first failed or ambiguous attempt, while earlier succes",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"feed_keys\": \"\",\n  \"group_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_create_dashboard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/dashboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "dashboard"
          ]
        },
        "description": "Create a dashboard for visualizing and controlling feed data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"visibility\": \"\",\n  \"description\": \"\",\n  \"show_header\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_create_feed",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/feed",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "feed"
          ]
        },
        "description": "Create a feed, optionally within an existing group.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"enabled\": false,\n  \"history\": false,\n  \"group_key\": \"\",\n  \"unit_type\": \"\",\n  \"visibility\": \"\",\n  \"description\": \"\",\n  \"unit_symbol\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_create_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "group"
          ]
        },
        "description": "Create a group for organizing feeds.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_delete_dashboard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/dashboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "dashboard"
          ]
        },
        "description": "Permanently delete one dashboard by exact key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dashboard_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_delete_data_point",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/data/point",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "data",
            "point"
          ]
        },
        "description": "Permanently delete one feed data point by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data_id\": \"\",\n  \"feed_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_delete_data_points",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/data/points",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "data",
            "points"
          ]
        },
        "description": "Permanently delete 1-30 feed data points sequentially through Adafruit IO's single-data-point DELETE endpoint, bounded by the Free-plan limit of 30 data mutations per minute. This operation is not ato",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data_ids\": \"\",\n  \"feed_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_delete_feed",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/feed",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "feed"
          ]
        },
        "description": "Permanently delete one feed and its retained data by exact feed key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"feed_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_delete_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "group"
          ]
        },
        "description": "Permanently delete one group by exact key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_get_account_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "status"
          ]
        },
        "description": "Return compact identity, plan limits, and current data-write throttle usage for the connected Adafruit IO account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_get_dashboards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dashboards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dashboards"
          ]
        },
        "description": "List dashboards, or retrieve one dashboard and its blocks by key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dashboard_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_get_data_point",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/data/point",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "data",
            "point"
          ]
        },
        "description": "Retrieve one feed data point by its exact ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data_id\": \"\",\n  \"include\": \"\",\n  \"feed_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_get_feeds",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/feeds",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "feeds"
          ]
        },
        "description": "List feeds, or retrieve one feed by key with optional data summary details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"feed_key\": \"\",\n  \"include_details\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_get_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "groups"
          ]
        },
        "description": "List groups with feed summaries, or retrieve one group by key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_list_feed_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/feed/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "feed",
            "data"
          ]
        },
        "description": "Return one newest-first page of feed data with an opaque cursor for the next older page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"include\": \"\",\n  \"end_time\": \"\",\n  \"feed_key\": \"\",\n  \"start_time\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_publish_feed_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/publish/feed/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "publish",
            "feed",
            "data"
          ]
        },
        "description": "Publish one or multiple timestamped values to a feed, using the batch endpoint only when multiple points are supplied.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\",\n  \"feed_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_remove_feeds_from_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/feeds/from/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "feeds",
            "from",
            "group"
          ]
        },
        "description": "Sequentially remove 1-10 feeds from one group using one documented provider request per feed. This is non-atomic: processing stops after the first failed or ambiguous attempt, while earlier successes ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"feed_keys\": \"\",\n  \"group_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_update_dashboard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/dashboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "dashboard"
          ]
        },
        "description": "Update an existing dashboard by exact dashboard key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"visibility\": \"\",\n  \"description\": \"\",\n  \"show_header\": false,\n  \"dashboard_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_update_data_point",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/data/point",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "data",
            "point"
          ]
        },
        "description": "Replace the value and optional metadata of one existing feed data point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ele\": \"\",\n  \"lat\": \"\",\n  \"lon\": \"\",\n  \"value\": \"\",\n  \"data_id\": \"\",\n  \"feed_key\": \"\",\n  \"created_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_update_feed",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/feed",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "feed"
          ]
        },
        "description": "Update an existing feed by exact feed key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"enabled\": false,\n  \"history\": false,\n  \"feed_key\": \"\",\n  \"unit_type\": \"\",\n  \"visibility\": \"\",\n  \"description\": \"\",\n  \"unit_symbol\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adafruit_io_update_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "group"
          ]
        },
        "description": "Update an existing group by exact group key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"group_key\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}