Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
98bebab
ci: use mcp-conformance-action for conformance tests
SamMorrowDrums Jan 16, 2026
7bdb5c5
fix: use correct action input names
SamMorrowDrums Jan 16, 2026
cccd7d8
fix: address review feedback
SamMorrowDrums Jan 16, 2026
0320a36
fix: update action SHA to include subshell fix
SamMorrowDrums Jan 16, 2026
0b90720
fix: update action SHA to include stderr logging
SamMorrowDrums Jan 16, 2026
f07d13a
chore: use immutable semver tag v1.4.0
SamMorrowDrums Jan 16, 2026
85d7abc
chore: update mcp-conformance-action to v1.4.1
SamMorrowDrums Jan 16, 2026
3699703
chore: update mcp-conformance-action to v1.4.2
SamMorrowDrums Jan 16, 2026
f368415
chore: update mcp-conformance-action to v1.4.3
SamMorrowDrums Jan 16, 2026
12820be
chore: update mcp-conformance-action to v1.4.4
SamMorrowDrums Jan 16, 2026
433513d
chore: update mcp-conformance-action to v1.4.6
SamMorrowDrums Jan 16, 2026
45e9828
ci: update to mcp-conformance-action@v2.0.0
SamMorrowDrums Jan 16, 2026
21d3a46
chore: update conformance action to v2.0.1 with transport fix
SamMorrowDrums Jan 16, 2026
6afbe7a
chore: update conformance action to v2.0.2 with Zod schema fix
SamMorrowDrums Jan 16, 2026
eefdecb
ci: upgrade mcp-conformance-action to v2.2.0
SamMorrowDrums Jan 17, 2026
c813558
chore: update mcp-conformance-action to v2.3.0
SamMorrowDrums Jan 17, 2026
c3074cc
chore: update mcp-conformance-action to v2.3.2
SamMorrowDrums Jan 17, 2026
f0d35be
chore: update mcp-conformance-action to v2 for security fixes
SamMorrowDrums Jan 18, 2026
508452c
Merge branch 'main' into feat/conformance-action
SamMorrowDrums Jan 19, 2026
a50b588
Rename to mcp-diff.yml (action renamed to mcp-server-diff)
SamMorrowDrums Jan 20, 2026
7bb9a24
Rename workflow for mcp-server-diff action
SamMorrowDrums Jan 20, 2026
4917cb2
chore: update to mcp-server-diff@v2
SamMorrowDrums Jan 20, 2026
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
69 changes: 0 additions & 69 deletions .github/workflows/conformance.yml

This file was deleted.

67 changes: 67 additions & 0 deletions .github/workflows/mcp-diff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: MCP Server Diff

on:
pull_request:

permissions:
contents: read

jobs:
mcp-diff:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Run MCP Server Diff
uses: SamMorrowDrums/mcp-server-diff@v2
with:
setup_go: "true"
install_command: go mod download
start_command: go run ./cmd/github-mcp-server stdio
env_vars: |
GITHUB_PERSONAL_ACCESS_TOKEN=test-token
configurations: |
[
{"name": "default", "args": ""},
{"name": "read-only", "args": "--read-only"},
{"name": "dynamic-toolsets", "args": "--dynamic-toolsets"},
{"name": "read-only+dynamic", "args": "--read-only --dynamic-toolsets"},
{"name": "toolsets-repos", "args": "--toolsets=repos"},
{"name": "toolsets-issues", "args": "--toolsets=issues"},
{"name": "toolsets-pull_requests", "args": "--toolsets=pull_requests"},
{"name": "toolsets-repos,issues", "args": "--toolsets=repos,issues"},
{"name": "toolsets-all", "args": "--toolsets=all"},
{"name": "tools-get_me", "args": "--tools=get_me"},
{"name": "tools-get_me,list_issues", "args": "--tools=get_me,list_issues"},
{"name": "toolsets-repos+read-only", "args": "--toolsets=repos --read-only"},
{"name": "toolsets-all+dynamic", "args": "--toolsets=all --dynamic-toolsets"},
{"name": "toolsets-repos+dynamic", "args": "--toolsets=repos --dynamic-toolsets"},
{"name": "toolsets-repos,issues+dynamic", "args": "--toolsets=repos,issues --dynamic-toolsets"},
{
"name": "dynamic-tool-calls",
"args": "--dynamic-toolsets",
"custom_messages": [
{"id": 10, "name": "list_toolsets_before", "message": {"jsonrpc": "2.0", "id": 10, "method": "tools/call", "params": {"name": "list_available_toolsets", "arguments": {}}}},
{"id": 11, "name": "get_toolset_tools", "message": {"jsonrpc": "2.0", "id": 11, "method": "tools/call", "params": {"name": "get_toolset_tools", "arguments": {"toolset": "repos"}}}},
{"id": 12, "name": "enable_toolset", "message": {"jsonrpc": "2.0", "id": 12, "method": "tools/call", "params": {"name": "enable_toolset", "arguments": {"toolset": "repos"}}}},
{"id": 13, "name": "list_toolsets_after", "message": {"jsonrpc": "2.0", "id": 13, "method": "tools/call", "params": {"name": "list_available_toolsets", "arguments": {}}}}
]
}
]

- name: Add interpretation note
if: always()
run: |
echo "" >> $GITHUB_STEP_SUMMARY
echo "---" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "ℹ️ **Note:** Differences may be intentional improvements." >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "Common expected differences:" >> $GITHUB_STEP_SUMMARY
echo "- New tools/toolsets added" >> $GITHUB_STEP_SUMMARY
echo "- Tool descriptions updated" >> $GITHUB_STEP_SUMMARY
echo "- Capability changes (intentional improvements)" >> $GITHUB_STEP_SUMMARY