GitHub Webhooks MCP Server

by ajaychinthapalli

Not rated
GitHub

About

A simple MCP server that manages GitHub webhooks and lets MCP compatible LLMs interact with the GitHub API.

Details

Author
ajaychinthapalli
Categories
Developer Tools, Other, Web Scraping, Automation

Setup

Install GitHub Webhooks MCP Server in your MCP client (Claude Desktop, Cursor, Windsurf, and others).

Repository: https://github.com/ajaychinthapalli/github-webhooks-mcp-server

Follow the installation instructions in the repository README, then restart your MCP client.

A Model Context Protocol (MCP) server for managing GitHub webhooks at both organization and repository levels.

- create_org_webhook- Create webhooks that apply to all repositories in an organization
- list_org_webhooks- List all organization-level webhooks
- update_org_webhook- Modify existing organization webhooks
- delete_org_webhook- Remove organization webhooks

- create_repo_webhook- Create webhooks for a specific repository
- list_repo_webhooks- List all webhooks for a repository
- update_repo_webhook- Modify existing repository webhooks
- delete_repo_webhook- Remove repository webhooks

The server requires a GitHub personal access token with appropriate permissions:

- For organization webhooks:admin:org_hookscope
- For repository webhooks:admin:repo_hookscope

Set the token as an environment variable:

export GITHUB_TOKEN=your_github_token_here

Add to your MCP client configuration (e.g., Claude Desktop):

{ "mcpServers": { "github-webhooks": { "command": "node", "args": ["/path/to/github-webhooks-mcp-server/dist/index.js"], "env": { "GITHUB_TOKEN": "your_github_token_here" } } } }
{ "org": "my-org", "config": { "url": "https://example.com/webhook", "content_type": "json", "secret": "my-secret" }, "events": ["push", "pull_request"], "active": true }
{ "org": "my-org", "per_page": 30, "page": 1 }
{ "org": "my-org", "hook_id": 12345, "config": { "url": "https://example.com/new-webhook" }, "active": false }
{ "org": "my-org", "hook_id": 12345 }
{ "owner": "username", "repo": "repository-name", "config": { "url": "https://example.com/webhook", "content_type": "json" }, "events": ["push", "issues"], "active": true }
{ "owner": "username", "repo": "repository-name" }
{ "owner": "username", "repo": "repository-name", "hook_id": 12345, "events": ["push", "pull_request", "issues"] }
{ "owner": "username", "repo": "repository-name", "hook_id": 12345 }

- push- Git push to a repository
- pull_request- Pull request activity
- issues- Issue activity
- issue_comment- Issue comment activity
- release- Release activity
- create- Branch or tag created
- delete- Branch or tag deleted
- fork- Repository forked
- star- Repository starred
- watch- Repository watched

For a complete list of events, seeGitHub Webhook Events Documentation.

github-webhooks-mcp-server/ ├── src/ │ └── index.ts # Main server implementation ├── dist/ # Compiled JavaScript (generated) ├── package.json ├── tsconfig.json └── README.md

- Node.js 18 or higher
- GitHub personal access token with appropriate webhook permissions

Official GitHub MCP server for repository search, issues, pull requests, code context, and GitHub workflows in MCP-compatible AI clients.

Manage GitHub Projects V2 using the GitHub GraphQL API.

Interact with Radicle (peer-to-peer code collaboration) and GitHub through a unified interface.

A CLI for interacting with GitKraken APIs. Includes an MCP server via gk mcp that not only wraps GitKraken APIs, but also Jira, GitHub, GitLab, and more.

A lightweight MCP server for interacting with GitHub repositories, requiring authentication.

A portable MCP server for performing various GitHub operations on any repository.

A server for managing and interacting with GitHub Gists, built with Go.

Interact with GitHub APIs for automation and repository management.

Interact with GitHub repositories, including issues, pull requests, commits, releases, and actions.

Manage GitHub repositories using a personal access token via CLI or environment variables.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.