Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
beee403
Fix session handling in HTTP and Streamable HTTP transports
avrabe Jul 7, 2025
71aa69b
fix(protocol): add MCP Inspector compatibility improvements
avrabe Jul 7, 2025
55e60d2
test(cli): fix cross-platform path tests for Windows compatibility
avrabe Jul 7, 2025
d481f91
refactor: improve code quality with clippy fixes
avrabe Jul 7, 2025
1381c4e
feat(examples): add streamable HTTP transport examples
avrabe Jul 7, 2025
44318d0
chore: bump version to 0.4.4
avrabe Jul 7, 2025
6f53409
docs(mcp-server): add comprehensive authentication configuration guide
avrabe Jul 13, 2025
60126b9
feat(examples): add complete memory-only authentication server example
avrabe Jul 13, 2025
f34c230
chore: apply code formatting and clippy fixes across examples
avrabe Jul 13, 2025
06aafac
test(cli): fix find_cargo_toml test for robust CI execution
avrabe Jul 13, 2025
1b25e7d
fix(monitoring): resolve async runtime blocking operation
avrabe Jul 13, 2025
459e636
ci: fix mcp-validate CLI argument syntax in scheduled validation
avrabe Jul 13, 2025
d9ebdef
fix: Complete async runtime fixes for metrics collection
avrabe Jul 13, 2025
39f4a4f
fix: Make CLI tests environment-independent
avrabe Jul 13, 2025
dcee15d
style: Fix code formatting for CLI tests
avrabe Jul 13, 2025
69186b6
fix: Resolve all CI test failures and security vulnerability
avrabe Jul 14, 2025
53c6165
docs: update badges and fix formatting
avrabe Jul 14, 2025
d2e2496
fix: remove clippy::assertions-on-constants warning
avrabe Jul 15, 2025
eeec7eb
fix: add missing integration-tests directory to Docker build
avrabe Jul 15, 2025
61cfd96
fix: add pull-requests write permission for code coverage comments
avrabe Jul 15, 2025
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
3 changes: 3 additions & 0 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
coverage:
name: Code Coverage
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write

steps:
- name: Checkout code
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/external-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,23 @@ jobs:
validate-framework:
name: Validate MCP Framework
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable, nightly]
rust: [stable]
include:
- os: ubuntu-latest
python: '3.11'
- os: macos-latest
python: '3.11'
- os: windows-latest
python: '3.11'
# Only run nightly on Ubuntu to reduce resource usage
- os: ubuntu-latest
rust: nightly
python: '3.11'

steps:
- name: Checkout code
Expand Down Expand Up @@ -144,6 +150,7 @@ jobs:
python-sdk-compatibility:
name: Python SDK Compatibility
runs-on: ubuntu-latest
timeout-minutes: 15

steps:
- name: Checkout code
Expand Down Expand Up @@ -180,6 +187,7 @@ jobs:
external-validator-integration:
name: External Validator Integration
runs-on: ubuntu-latest
timeout-minutes: 20
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'

steps:
Expand Down Expand Up @@ -216,6 +224,7 @@ jobs:
security-validation:
name: Security Validation
runs-on: ubuntu-latest
timeout-minutes: 15

steps:
- name: Checkout code
Expand Down Expand Up @@ -243,6 +252,7 @@ jobs:
benchmark-validation:
name: Performance Benchmarks
runs-on: ubuntu-latest
timeout-minutes: 25
if: github.event_name == 'push' && github.ref == 'refs/heads/main'

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
filename=$(echo "$server" | sed 's/[^a-zA-Z0-9]/_/g')

# Run validation
./target/release/mcp-validate "$server" --all \
./target/release/mcp-validate --server-url "$server" --all \
--output "validation-results/${filename}.json" \
--timeout 30 || true
done
Expand Down
Loading
Loading