Skip to content

Commit 076fca7

Browse files
Add MCP Registry metadata and CI workflow
- mcp-registry.json for MCP Registry submission - GitHub Actions CI workflow for Node 18/20/22 - Automated build and basic smoke test
1 parent db15967 commit 076fca7

2 files changed

Lines changed: 77 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master, main ]
6+
pull_request:
7+
branches: [ master, main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [18.x, 20.x, 22.x]
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v4
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
cache: 'npm'
25+
26+
- name: Install dependencies
27+
run: npm ci
28+
29+
- name: Build
30+
run: npm run build
31+
32+
- name: Test server starts
33+
run: |
34+
timeout 3 node dist/index.js &
35+
sleep 1
36+
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}' | node dist/index.js

mcp-registry.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "@bountyclaw/mcp-git-enhanced",
3+
"version": "1.0.0",
4+
"description": "Enhanced Git MCP Server - Code review, commit analysis, and branch management",
5+
"homepage": "https://github.com/davidweb3-ctrl/mcp-git-enhanced",
6+
"author": {
7+
"name": "BountyClaw",
8+
"url": "https://github.com/davidweb3-ctrl"
9+
},
10+
"license": "MIT",
11+
"categories": ["developer-tools", "version-control"],
12+
"tags": ["git", "code-review", "diff", "commit-analysis", "branch-management"],
13+
"install": {
14+
"npm": {
15+
"package": "@bountyclaw/mcp-git-enhanced"
16+
}
17+
},
18+
"runtime": "node",
19+
"tools": [
20+
{
21+
"name": "git_diff",
22+
"description": "Analyze code changes between commits, branches, or working directory"
23+
},
24+
{
25+
"name": "git_log",
26+
"description": "Analyze commit history with filtering and statistics"
27+
},
28+
{
29+
"name": "git_branch",
30+
"description": "Manage and analyze git branches"
31+
},
32+
{
33+
"name": "git_status",
34+
"description": "Get comprehensive repository status"
35+
},
36+
{
37+
"name": "git_commit_analyze",
38+
"description": "Analyze a specific commit in detail"
39+
}
40+
]
41+
}

0 commit comments

Comments
 (0)