GitHub Actions MCP Server

by ko1ynnky
Verified

list_workflows

List GitHub repository workflows by specifying owner and repo. Supports pagination and custom results per page up to 100, ideal for managing GitHub Actions workflows.

Instructions

List workflows in a GitHub repository

Input Schema

NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
pageNoPage number for pagination
perPageNoResults per page (max 100)
repoYesRepository name

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "owner": { "description": "Repository owner (username or organization)", "type": "string" }, "page": { "description": "Page number for pagination", "type": "number" }, "perPage": { "description": "Results per page (max 100)", "type": "number" }, "repo": { "description": "Repository name", "type": "string" } }, "required": [ "owner", "repo" ], "type": "object" }

You must be authenticated.

Other Tools from GitHub Actions MCP Server

Related Tools

ID: ydaumkc8kn