Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ trigger-events/
codex-runs/
__pycache__/
*.pyc
mcp-server/node_modules/
55 changes: 55 additions & 0 deletions mcp-server/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"manifest_version": "0.3",
"name": "github-webhook-mcp",
"version": "0.2.0",
"description": "Browse pending GitHub webhook events. Pairs with a webhook receiver that writes events.json.",
"author": {
"name": "Liplus Project"
},
"license": "MIT",
"server": {
"type": "node",
"entry_point": "server/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/server/index.js"],
"env": {
"EVENTS_JSON_PATH": "${user_config.events_json_path}"
}
}
},
"user_config": [
{
"id": "events_json_path",
"name": "Events JSON Path",
"description": "Absolute path to the events.json file written by the webhook receiver.",
"type": "string",
"required": true
}
],
"tools": [
{
"name": "get_pending_status",
"description": "Get a lightweight snapshot of pending GitHub webhook events."
},
{
"name": "list_pending_events",
"description": "List lightweight summaries for pending GitHub webhook events."
},
{
"name": "get_event",
"description": "Get the full payload for a single webhook event by ID."
},
{
"name": "get_webhook_events",
"description": "Get pending (unprocessed) GitHub webhook events with full payloads."
},
{
"name": "mark_processed",
"description": "Mark a webhook event as processed so it won't appear again."
}
],
"compatibility": {
"platforms": ["windows", "macos", "linux"]
}
}
Loading
Loading