{"id":30028671,"url":"https://github.com/lailo/github-actions-mcp","last_synced_at":"2026-01-20T16:30:34.876Z","repository":{"id":306930441,"uuid":"1027244202","full_name":"lailo/github-actions-mcp","owner":"lailo","description":"MCP server for analyzing GitHub Actions workflows and performance","archived":false,"fork":false,"pushed_at":"2025-08-25T17:18:10.000Z","size":390,"stargazers_count":0,"open_issues_count":11,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-01T01:23:56.461Z","etag":null,"topics":["ai-agents","bun","eslint","lefthook","mcp-server","prettier","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lailo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-27T16:09:15.000Z","updated_at":"2025-08-02T13:34:41.000Z","dependencies_parsed_at":"2025-07-28T14:44:32.641Z","dependency_job_id":"ac7ef849-4061-423b-a834-de902f95772f","html_url":"https://github.com/lailo/github-actions-mcp","commit_stats":null,"previous_names":["lailo/github-actions-mcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lailo/github-actions-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lailo%2Fgithub-actions-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lailo%2Fgithub-actions-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lailo%2Fgithub-actions-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lailo%2Fgithub-actions-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lailo","download_url":"https://codeload.github.com/lailo/github-actions-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lailo%2Fgithub-actions-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607169,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","bun","eslint","lefthook","mcp-server","prettier","typescript"],"created_at":"2025-08-06T15:54:07.661Z","updated_at":"2026-01-20T16:30:34.862Z","avatar_url":"https://github.com/lailo.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Actions MCP Server\n\nAn MCP (Model Context Protocol) server for analyzing GitHub Actions workflows and performance. This tool helps identify bottlenecks, failures, and optimization opportunities in your CI/CD pipelines.\n\n## Features\n\n- **Workflow Discovery**: List all workflows in a repository\n- **Run Analysis**: Get detailed information about workflow runs with filtering\n- **Performance Analysis**: Analyze workflow runs to identify slow jobs and failures\n- **Timing Details**: Get detailed timing information for jobs and steps\n\n## Installation\n\n1. Clone this repository\n2. Install dependencies:\n   ```bash\n   bun install\n   ```\n3. Set up your GitHub token:\n   ```bash\n   cp .env.example .env\n   # Edit .env and add your GitHub token\n   ```\n4. Build the project:\n   ```bash\n   bun run build\n   ```\n\n## Usage\n\n### Running the MCP Server\n\n```bash\nbun run start\n```\n\nThe server communicates via stdio and can be integrated with MCP-compatible clients.\n\n### Development\n\nThe MCP Inspector provides a web-based interface to test your server:\n\n```bash\n# First, install dependencies\nbun install\n\nbun run dev\n```\n\nThis will open a web interface where you can:\n\n- View available tools\n- Test tool calls interactively\n- See request/response data\n- Debug tool schemas\n\n### Using with Claude Desktop\n\nTo use this MCP server with Claude Desktop, add the following configuration to your Claude Desktop settings:\n\n```json\n{\n  \"mcpServers\": {\n    \"github-actions\": {\n      \"command\": \"bun\",\n      \"args\": [\"run\", \"start\"],\n      \"cwd\": \"/path/to/your/github-actions-mcp\",\n      \"env\": {\n        \"GITHUB_TOKEN\": \"your_github_token_here\"\n      }\n    }\n  }\n}\n```\n\n**Important Notes:**\n\n- Replace `/path/to/your/github-actions-mcp` with the actual path to your project directory\n- Replace `your_github_token_here` with your actual GitHub personal access token\n- Make sure Bun is installed and available in your system PATH\n- Restart Claude Desktop after making configuration changes\n\nAfter configuration, Claude Desktop will automatically connect to your MCP server and you'll be able to use commands like:\n\n- \"List workflows in my repository owner/repo-name\"\n- \"Analyze the latest failed workflow run for owner/repo-name\"\n- \"Show me timing details for workflow run 123456\"\n\n## GitHub Token Setup\n\n1. Go to [GitHub Settings \u003e Developer settings \u003e Personal access tokens](https://github.com/settings/tokens)\n2. Generate a new token with the following permissions:\n   - `repo` (Full control of private repositories)\n   - `actions:read` (Read access to actions and workflows)\n3. Add the token to your `.env` file\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flailo%2Fgithub-actions-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flailo%2Fgithub-actions-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flailo%2Fgithub-actions-mcp/lists"}