Merge pull request #32 from SamMorrowDrums/dependabot/uv/cryptography… #50
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" | |
| } | |
| ] |