G
GitHub Actions
Trigger and inspect GitHub Actions workflows.
·No reviews yet
Share:
About
Auto-generated
GitHub Actions is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about GitHub Actions.
- What is the GitHub Actions Model Context Protocol server?
- This MCP server enables integration with GitHub Actions workflows. It allows external clients to trigger and observe the execution of these workflows, facilitating automated development and deployment tasks.
- How can I install the GitHub Actions MCP in a client like Claude Desktop?
- Specific installation steps depend on the client. Generally you'd add the GitHub Actions MCP server by providing its slug 'github-actions' and 'stdio' as the transport method in your client's server configuration. Detailed instructions are usually found within your MCP client's documentation.
- Does this MCP server require authentication?
- Yes, this MCP server utilizes API key authentication. You will need to provide a valid API key to successfully interact with GitHub Actions through this server.
- What are the primary capabilities of the GitHub Actions MCP?
- The GitHub Actions MCP is designed to trigger and inspect GitHub Actions workflows. This allows for programmatic initiation and monitoring of CI/CD pipelines and other automated tasks defined within GitHub.
- Is there a cost associated with using this MCP server?
- The MCP server itself is open-source and free to use. However, the cost implications of running GitHub Actions workflows depend on your GitHub plan and usage, as GitHub Actions may incur charges based on execution minutes and storage.
- Are there any prerequisites for using the GitHub Actions MCP?
- A primary prerequisite is having an active GitHub account and existing GitHub Actions workflows configured in your repositories. You will also need to generate and provide a suitable API key for authentication with the MCP server.
Install GitHub Actions
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"github-actions": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github-actions"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"github-actions": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github-actions"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"github-actions": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github-actions"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.