GitHub Webhooks MCP Server
Allows managing GitHub webhooks at organization and repository levels, including creating, listing, updating, and deleting webhooks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GitHub Webhooks MCP Servercreate repo webhook for push events"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GitHub Webhooks MCP Server
A Model Context Protocol (MCP) server for managing GitHub webhooks at both organization and repository levels.
Features
Organization-level Webhooks
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
Repository-level 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
Related MCP server: GitHub Tools MCP Server
Installation
npm install
npm run buildConfiguration
The server requires a GitHub personal access token with appropriate permissions:
For organization webhooks:
admin:org_hookscopeFor repository webhooks:
admin:repo_hookscope
Set the token as an environment variable:
export GITHUB_TOKEN=your_github_token_hereUsage
Running the Server
node dist/index.jsMCP Client Configuration
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"
}
}
}
}Tool Examples
Create Organization Webhook
{
"org": "my-org",
"config": {
"url": "https://example.com/webhook",
"content_type": "json",
"secret": "my-secret"
},
"events": ["push", "pull_request"],
"active": true
}List Organization Webhooks
{
"org": "my-org",
"per_page": 30,
"page": 1
}Update Organization Webhook
{
"org": "my-org",
"hook_id": 12345,
"config": {
"url": "https://example.com/new-webhook"
},
"active": false
}Delete Organization Webhook
{
"org": "my-org",
"hook_id": 12345
}Create Repository Webhook
{
"owner": "username",
"repo": "repository-name",
"config": {
"url": "https://example.com/webhook",
"content_type": "json"
},
"events": ["push", "issues"],
"active": true
}List Repository Webhooks
{
"owner": "username",
"repo": "repository-name"
}Update Repository Webhook
{
"owner": "username",
"repo": "repository-name",
"hook_id": 12345,
"events": ["push", "pull_request", "issues"]
}Delete Repository Webhook
{
"owner": "username",
"repo": "repository-name",
"hook_id": 12345
}Webhook Events
Common webhook events include:
push- Git push to a repositorypull_request- Pull request activityissues- Issue activityissue_comment- Issue comment activityrelease- Release activitycreate- Branch or tag createddelete- Branch or tag deletedfork- Repository forkedstar- Repository starredwatch- Repository watched
For a complete list of events, see GitHub Webhook Events Documentation.
Development
Build
npm run buildProject Structure
github-webhooks-mcp-server/
├── src/
│ └── index.ts # Main server implementation
├── dist/ # Compiled JavaScript (generated)
├── package.json
├── tsconfig.json
└── README.mdRequirements
Node.js 18 or higher
GitHub personal access token with appropriate webhook permissions
License
MIT
Available Tools
8 toolscreate_org_webhookA
Create a webhook for an organization that applies to all repositories in the organization
| Name | Required | Description | Default |
|---|---|---|---|
| org | Yes | Organization name | |
| name | No | The name of the webhook (must be 'web') | web |
| active | No | Whether the webhook is active (default: true) | |
| config | Yes | ||
| events | No | Array of events that trigger the webhook (e.g., ['push', 'pull_request']) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden of behavioral disclosure. It only states the creation action and scope, but does not mention required permissions, response format, potential side effects, or whether existing webhooks are overwritten. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that directly states the action and scope. There is no wasted wording or irrelevant detail, making it appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 5 parameters with a nested config object, no output schema, and no annotations, so the description needs to provide more context. It clearly conveys the core purpose and scope but does not explain return values, default events, or any limitations. This is adequate but with visible gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is high (80%), so a baseline of 3 is appropriate. The description adds no parameter-specific meaning beyond the schema; it only restates that the webhook applies to all repositories, which is a scope clarification rather than parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Create' and identifies the resource as 'a webhook for an organization', with the clarifying phrase 'applies to all repositories in the organization' that distinguishes it from repo-specific webhooks like create_repo_webhook. This is a clear, specific statement of purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly indicates the tool is for org-wide webhooks affecting all repositories, which implicitly tells the agent when to use it versus repo-specific webhook tools. However, it does not explicitly name alternatives (e.g., create_repo_webhook) or state when not to use it, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_repo_webhookB
Create a webhook for a specific repository
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | The name of the webhook (must be 'web') | web |
| repo | Yes | Repository name | |
| owner | Yes | Repository owner (user or organization) | |
| active | No | Whether the webhook is active (default: true) | |
| config | Yes | ||
| events | No | Array of events that trigger the webhook (e.g., ['push', 'pull_request']) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states 'Create', which implies mutation, but does not disclose permissions, rate limits, idempotency, overwrite behavior, or what response to expect. For a write operation with zero annotation coverage, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence, front-loaded with the action and resource. It contains no unnecessary words and is appropriately minimal for a tool that is otherwise well-documented by its schema.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a mutation tool with 6 parameters, nested objects, no annotations, and no output schema. The one-sentence description lacks context about behavior, usage scenarios, or outcomes. The rich schema covers parameters but does not compensate for missing behavioral and contextual information.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides descriptions for most parameters (83% coverage), including nested config fields, so the schema already documents the parameters well. The description itself adds no parameter semantics beyond what the schema provides, resulting in a baseline score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Create a webhook for a specific repository' clearly identifies the action (create) and the resource (repository webhook). The qualifier 'specific repository' distinguishes it from sibling org-level webhook tools, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention that this is for repository webhooks only, nor does it reference other sibling tools like create_org_webhook for organization-level webhooks. No exclusions or prerequisites are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_org_webhookA
Delete an organization webhook
| Name | Required | Description | Default |
|---|---|---|---|
| org | Yes | Organization name | |
| hook_id | Yes | Webhook ID to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must carry the full burden. 'Delete' hints at destructiveness, but no mention of irreversibility, permissions, or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, focused sentence with no filler. Action and resource are presented upfront with maximum efficiency.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 2-parameter delete tool with no output schema, the description is adequate but lacks usage context and behavioral caveats. It explains the core action but leaves out important context an agent might need.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already fully describes both parameters (Organization name, Webhook ID to delete) with 100% coverage. The description adds no extra semantic meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Delete' and clearly names the resource 'organization webhook', distinguishing it from sibling tools like 'delete_repo_webhook' and CRUD alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives. The resource name 'organization webhook' implies the target context, but there is no mention of exclusions or alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_repo_webhookC
Delete a repository webhook
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | Repository name | |
| owner | Yes | Repository owner (user or organization) | |
| hook_id | Yes | Webhook ID to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears the full burden of revealing behavioral traits. It only says 'delete', which implies a destructive action, but it does not disclose whether deletion is permanent, whether it requires specific permissions (e.g., admin access), or what happens to the webhook after deletion. This lack of context leaves important operational behavior unspecified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that conveys the essential action without unnecessary detail. It is appropriately concise for a simple delete operation, though it could have included behavioral context without sacrificing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (three required parameters, no output schema), the description together with the schema provides a minimum viable context for invoking the tool. However, it lacks any mention of side effects or usage context relative to sibling webhook tools, making it slightly incomplete for agents needing broader operational guidance.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema fully documents all three parameters (owner, repo, hook_id) with descriptions, giving 100% schema description coverage. The tool description adds no additional parameter semantics, but the schema already provides sufficient meaning, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Delete' and the resource 'repository webhook', making the tool's purpose unambiguous. It also distinguishes itself from the sibling delete_org_webhook by specifying 'repository', though it does so only through the resource name rather than explicit comparison.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives such as delete_org_webhook. It does not mention conditions, prerequisites, or any scenario where this tool should be preferred, leaving the agent to infer usage from the sibling tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_org_webhooksB
List all webhooks for an organization
| Name | Required | Description | Default |
|---|---|---|---|
| org | Yes | Organization name | |
| page | No | Page number (default: 1) | |
| per_page | No | Number of results per page (default: 30) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description says 'List all webhooks' which implies a complete list, but the schema includes page and per_page parameters, indicating pagination. This is not disclosed in the description, creating a potential misunderstanding about behavior. No annotations exist to fill this gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, direct sentence that front-loads the verb and resource. No fluff, and it immediately conveys the tool's purpose. Efficient and appropriately sized.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no annotations, no output schema, and a description that omits pagination behavior and return format, the tool is under-specified. Given the presence of sibling tools, a short note about org vs repo scope or pagination would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with parameter descriptions already provided. The description adds no extra meaning to the parameters (e.g., what 'all' means in the context of pagination). Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and resource ('webhooks') scoped to 'an organization'. It distinguishes itself from sibling tools like 'list_repo_webhooks' and create/update/delete operations, leaving no ambiguity about its function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied by the name and description — it's the org-level listing counterpart to list_repo_webhooks. However, it does not explicitly mention when to use it vs alternatives or provide any exclusion criteria, so it falls short of clear guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_repo_webhooksA
List all webhooks for a repository
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default: 1) | |
| repo | Yes | Repository name | |
| owner | Yes | Repository owner (user or organization) | |
| per_page | No | Number of results per page (default: 30) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It fails to mention that the 'all webhooks' claim is qualified by pagination (page/per_page parameters), and it does not disclose response format, ordering, or any rate limits. The description is essentially a restatement of the tool name with minimal added context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no unnecessary words. It is concise and front-loaded, effectively conveying the core action and target resource without bloat.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a simple list operation, but the description lacks essential context such as pagination behavior and return value structure. Given the absence of an output schema, the description does not fully explain what the caller can expect beyond 'all webhooks'.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds no extra meaning beyond what the schema already provides for the parameters (owner, repo, page, per_page).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and resource ('webhooks for a repository'), clearly identifying the tool's action and scope. It distinguishes itself from sibling tools like list_org_webhooks by explicitly specifying 'for a repository'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The context is clear: this tool is for listing repository webhooks, not organization webhooks (sibling list_org_webhooks) and not for creating/updating/deleting. However, it does not explicitly mention alternatives or exclusions, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_org_webhookB
Update an existing organization webhook
| Name | Required | Description | Default |
|---|---|---|---|
| org | Yes | Organization name | |
| active | No | Whether the webhook is active | |
| config | No | ||
| events | No | Array of events that trigger the webhook | |
| hook_id | Yes | Webhook ID to update |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of disclosing behavior. It only says 'Update', which mirrors the tool name, and does not mention whether updates are partial or full replacements, what permissions are needed, or any side effects. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence with no filler or redundant content. Every word earns its place, and it is appropriately front-loaded with the action and resource.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 5 parameters, a nested config object, no annotations, and no output schema, the description is too sparse. It does not explain update semantics (e.g., partial updates, required fields), return values, or usage context. The schema covers parameters, but the description fails to provide the behavioral and contextual richness needed for safe invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 80%, and the schema itself provides descriptions for most parameters, including nested config properties. The description adds no parameter-specific meaning beyond what the schema already conveys, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('update'), the resource ('existing organization webhook'), and implicitly distinguishes from siblings like list, create, delete, and the repo-specific webhook tools. The phrase 'organization webhook' aligns with the tool name and leaves no ambiguity about what is being updated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as create_org_webhook or update_repo_webhook. The description simply states what it does without any context about prerequisites, typical use cases, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_repo_webhookB
Update an existing repository webhook
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | Repository name | |
| owner | Yes | Repository owner (user or organization) | |
| active | No | Whether the webhook is active | |
| config | No | ||
| events | No | Array of events that trigger the webhook | |
| hook_id | Yes | Webhook ID to update |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden of behavioral disclosure. It only conveys that this is a mutation operation on an existing resource, but it does not describe side effects, required permissions, partial update semantics, or what happens if the webhook does not exist. The description adds little beyond the tool name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence: 'Update an existing repository webhook.' Every word contributes meaning, with no redundancy or fluff. It is front-loaded with the action and resource.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite the schema being fairly rich (6 parameters, nested config object), the description is minimal and does not provide behavioral context, return value expectations, or preconditions. For a mutation tool with no annotations and no output schema, this leaves the agent with insufficient information to fully understand the operation's impact.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is high (83%), so the schema already documents the parameters well. The description adds no extra parameter context, but since the schema covers it, a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Update'), the resource ('repository webhook'), and the qualification ('existing'), which distinguishes it from sibling tools like create, list, delete, and org-scoped webhook tools. It is specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: use this tool to update an existing repository webhook, as opposed to creating a new one or managing org webhooks. However, it does not explicitly state when to choose this tool over alternatives, nor does it mention prerequisites like the webhook needing to exist. The guidance is only implied by the verb and resource.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
8 tool updates
v1.0.0- First observed
create_org_webhook - First observed
create_repo_webhook - First observed
delete_org_webhook - First observed
delete_repo_webhook - First observed
list_org_webhooks - First observed
list_repo_webhooks - First observed
update_org_webhook - First observed
update_repo_webhook
TDQS
Each tool targets a distinct resource type (org vs repo) and action (list/create/update/delete), with no overlap. The org and repo scopes are clearly separated in both names and descriptions.
All tool names follow the consistent pattern verb_scope_webhook (e.g., create_org_webhook, delete_repo_webhook). No mixed conventions or vague verbs.
8 tools is well-scoped for managing webhooks across two levels (org and repo). Each tool serves a clear purpose, and the count is within the ideal range.
The tool set provides full CRUD coverage for both organization and repository webhooks. There are no missing operations that would cause dead ends—list returns IDs needed for update/delete, so workflows are complete.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Create, deploy, and operate MCP servers directly from your GitHub repositories.
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
A Model Context Protocol (MCP) server for Selise Blocks Cloud integration
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables LLM agents to manage GitHub repositories, issues, pull requests, branches, files, and releases through a standardized interface.4678Apache 2.0
- FlicenseNot gradedqualityNot gradedmaintenanceModel Context Protocol server that enables interaction with GitHub repositories, issues, pull requests, and search functionality through natural language.1-
- AlicenseNot gradedqualityCmaintenanceA Model Context Protocol server that enables remote connections with GitHub authentication, allowing users to build applications that leverage MCP tools with secure OAuth-based access control.GPL 3.0
- AlicenseBqualityDmaintenanceMCP (Model Context Protocol) server for GitHub API integration. This server provides comprehensive tools for interacting with GitHub repositories, issues, pull requests, branches, and code search through a unified interface.1514MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ajaychinthapalli/github-webhooks-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server