Skip to content

Commit 384c1c8

Browse files
committed
docs: add conformance summary to README
1 parent 000e5ce commit 384c1c8

1 file changed

Lines changed: 18 additions & 9 deletions

File tree

README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ To run the tests you have to pre-install `Docker` and `npx`.
4242
```
4343
### Conformance Tests
4444

45-
The SDK is validated against the [MCP conformance test suite](https://github.com/modelcontextprotocol/conformance).
45+
The SDK is validated against the [MCP conformance test suite](https://github.com/modelcontextprotocol/conformance) at 0.1.15 version.
4646
Full details and instructions are in [`conformance-tests/VALIDATION_RESULTS.md`](conformance-tests/VALIDATION_RESULTS.md).
4747

4848
**Latest results:**
4949

50-
| Suite | Result |
51-
|---------------|------------------------------------------------|
52-
| Server | ✅ 40/40 passed (100%) |
53-
| Client | ⚠️ 3/4 scenarios, 9/10 checks passed |
54-
| Auth (Spring) | ⚠️ 12/14 scenarios fully passing (98.9% checks) |
50+
| Suite | Result |
51+
|---------------|-----------------------------------------------------|
52+
| Server | ✅ 40/40 passed (100%) |
53+
| Client | 🟡 3/4 scenarios, 9/10 checks passed |
54+
| Auth (Spring) | 🟡 12/14 scenarios fully passing (98.9% checks) |
5555

5656
To run the conformance tests locally you need `npx` installed.
5757

@@ -62,9 +62,18 @@ npx @modelcontextprotocol/conformance server --url http://localhost:8080/mcp --s
6262

6363
# Client conformance
6464
./mvnw clean package -DskipTests -pl conformance-tests/client-jdk-http-client -am
65-
npx @modelcontextprotocol/conformance client \
66-
--command "java -jar conformance-tests/client-jdk-http-client/target/client-jdk-http-client-1.1.0-SNAPSHOT.jar" \
67-
--scenario initialize
65+
for scenario in initialize tools_call elicitation-sep1034-client-defaults sse-retry; do
66+
npx @modelcontextprotocol/conformance client \
67+
--command "java -jar conformance-tests/client-jdk-http-client/target/client-jdk-http-client-2.0.0-SNAPSHOT.jar" \
68+
--scenario $scenario
69+
done
70+
71+
# Auth conformance (Spring HTTP Client)
72+
./mvnw clean package -DskipTests -pl conformance-tests/client-spring-http-client -am
73+
npx @modelcontextprotocol/conformance@0.1.15 client \
74+
--spec-version 2025-11-25 \
75+
--command "java -jar conformance-tests/client-spring-http-client/target/client-spring-http-client-2.0.0-SNAPSHOT.jar" \
76+
--suite auth
6877
```
6978

7079
## Contributing

0 commit comments

Comments
 (0)