Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
30 changes: 0 additions & 30 deletions .github/actions/conformance/run-server.sh

This file was deleted.

26 changes: 16 additions & 10 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,36 @@ permissions:
jobs:
server-conformance:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
with:
enable-cache: true
version: 0.9.5
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 24
- run: uv sync --frozen --all-extras --package mcp-everything-server
- run: ./.github/actions/conformance/run-server.sh
- name: Start everything-server
run: |
uv run --frozen mcp-everything-server --port 3001 &
timeout 15 bash -c 'until curl -s http://localhost:3001/mcp > /dev/null 2>&1; do sleep 0.5; done'
echo "Server ready"
- uses: modelcontextprotocol/conformance@4a42c25058c4636aca1ae7f6547ee30805de36ee
with:
mode: server
url: http://localhost:3001/mcp
expected-failures: ./conformance-baseline.yml

client-conformance:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
with:
enable-cache: true
version: 0.9.5
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 24
- run: uv sync --frozen --all-extras --package mcp
- run: npx @modelcontextprotocol/conformance@0.1.10 client --command 'uv run --frozen python .github/actions/conformance/client.py' --suite all
- uses: modelcontextprotocol/conformance@4a42c25058c4636aca1ae7f6547ee30805de36ee
with:
mode: client
command: "uv run --frozen python .github/actions/conformance/client.py"
suite: all
expected-failures: ./conformance-baseline.yml
9 changes: 9 additions & 0 deletions conformance-baseline.yml
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think it should go on the root directory, but besides that, all good.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where do you think it should go?

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# MCP Conformance Test Baseline
# Lists scenarios expected to fail. CI will fail if:
# - A scenario not listed here fails (regression)
# - A scenario listed here passes (stale entry, remove it)
#
# server:
# - scenario-name
# client:
# - scenario-name