-
Notifications
You must be signed in to change notification settings - Fork 10
40 lines (36 loc) · 944 Bytes
/
mcp-diff.yml
File metadata and controls
40 lines (36 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: MCP Server Diff
on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]
tags: ['v*']
permissions:
contents: read
jobs:
mcp-diff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: SamMorrowDrums/mcp-server-diff@v2
with:
setup_python: true
python_version: '3.11'
install_command: pip install -e .
http_start_command: python -m mcp_starter.server --http --port 3000
configurations: |
[
{
"name": "stdio",
"transport": "stdio",
"start_command": "python -m mcp_starter.server"
},
{
"name": "streamable-http",
"transport": "streamable-http",
"server_url": "http://localhost:3000/mcp"
}
]