Skip to content

test(mcp): add schema/runtime conformance guard (#794) - #1187

Open
yanyishuai wants to merge 1 commit into
ramimbo:mainfrom
yanyishuai:fix/issue-794-mcp-schema-conformance
Open

yanyishuai wants to merge 1 commit into
ramimbo:mainfrom
yanyishuai:fix/issue-794-mcp-schema-conformance

Conversation

@yanyishuai

@yanyishuai yanyishuai commented Jun 30, 2026

Copy link
Copy Markdown

Summary

Add a reusable MCP schema/runtime conformance test layer for #794 so tools/list input schemas and tools/call validation stay aligned.

Changes

  • tests/mcp_conformance.py — shared helpers to call MCP tools and assert accept/reject envelopes
  • tests/test_mcp_schema_conformance.py — conformance matrix for submit_work_proof:
    • exact format enum (text / json only; rejects aliases, padding, and explicit null)
    • undeclared-property rejection with additionalProperties: false
    • invalid bounty selector combinations
    • non-canonical integer string rejection (099, 0656, +1)
    • schema-valid examples still pass (omitted optional args, bounty_id/issue_number/repo paths)
  • app/mcp_tools.py — stop normalizing format with strip/lower so runtime matches the advertised enum

Verification

python -m pytest tests/test_mcp_schema_conformance.py -q
python -m pytest tests/test_api_mcp.py -k submit_work_proof -q
python -m ruff check app/mcp_tools.py tests/mcp_conformance.py tests/test_mcp_schema_conformance.py

Fixes #794

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

Summary by CodeRabbit

  • Tests
    • Added new MCP conformance helpers for listing tools, calling tools, and checking success or validation error responses.
    • Added schema conformance coverage to verify tool inputs reject extra fields, invalid enum values, bad selector combinations, and non-standard integer formats.
    • Added acceptance checks for valid request examples to confirm expected tool behavior end to end.

@coderabbitai

coderabbitai Bot commented Jun 30, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@yanyishuai, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 47 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: b59f2ec7-07c2-4c94-93ab-49bfb33898de

📥 Commits

Reviewing files that changed from the base of the PR and between 014ec22 and 5d5264b.

📒 Files selected for processing (3)
  • app/mcp_tools.py
  • tests/mcp_conformance.py
  • tests/test_mcp_schema_conformance.py
📝 Walkthrough

Walkthrough

Adds a new test helper module for driving MCP JSON-RPC tool calls (list, call, and accept/reject assertions) and a new test suite validating that submit_work_proof's advertised inputSchema matches runtime validation behavior, covering enum, selector, undeclared-property, and integer-encoding cases.

Changes

MCP conformance test suite

Layer / File(s) Summary
MCP conformance helper functions
tests/mcp_conformance.py
Adds mcp_tools_by_name, mcp_tools_call, assert_mcp_tools_call_rejects, and assert_mcp_tools_call_accepts to drive /mcp JSON-RPC calls via TestClient and assert error/success shapes.
Schema conformance tests for submit_work_proof
tests/test_mcp_schema_conformance.py
Adds _tools_with_input_schema helper and parametrized tests verifying inputSchema disallows extra properties, and that submit_work_proof rejects non-exact format enums, undeclared properties, invalid selectors, and non-canonical integers, while accepting schema-valid argument combinations.

Possibly related PRs

  • ramimbo/mergework#345: Introduces the submit_work_proof inputSchema changes that the new conformance tests directly exercise.
  • ramimbo/mergework#856: Adds stricter submit_work_proof argument validation and enum handling that this PR's tests target.
  • ramimbo/mergework#942: Adds inputSchema selector constraints for other MCP tools using the same tools/list/tools/call conformance pattern.
🚥 Pre-merge checks | ✅ 5 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description covers summary and verification, but omits required sections like Evidence, Test Evidence, and MRWK. Reformat the body to match the template and add the missing Evidence, Test Evidence checklist, and MRWK section.
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title is short, concrete, and names the MCP schema/runtime conformance guard added in the PR.
Linked Issues check ✅ Passed The PR adds reusable MCP helpers and conformance tests covering the exact enum, undeclared properties, selector cases, and canonical integers required by #794.
Out of Scope Changes check ✅ Passed The changes stay on the MCP schema/runtime conformance guardrail and related validation behavior, with no unrelated surface added.
Mergework Public Artifact Hygiene ✅ Passed PASS: The PR text and touched files are test/runtime changes only; I found no investment, price, cash-out/off-ramp, payout, or private security claims in docs/comments.
Bounty Pr Focus ✅ Passed PASS: The commit touches only two MCP test files, both centered on issue #794/submit_work_proof; no unrelated app surfaces are in the diff.

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@qingfeng312 qingfeng312 left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Reviewed current head 94bb787189b25f28e4c247caf423c79ac2567c9f. The new conformance helper preserves the MCP request envelope, the submit_work_proof matrix covers exact enum/null/extra-property/selector/integer boundary cases, and the runtime change keeps omitted format defaulting to text while rejecting values outside the advertised enum. Hosted quality/readiness checks are passing; no blocking issue found.

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Thanks for approving #794 — CI is still green on the latest head (94bb787189b2).

This is the only open PR for the MCP schema/runtime conformance guard (tests/mcp_conformance.py + submit_work_proof matrix). Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Gentle follow-up — #794 remains the only open PR, CI still green, and both approvals are in from the prior review round. Ready to merge whenever convenient.

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR with your approval in place. CI green on 94bb787. Highest-priority merge candidate whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — still the only open PR, CI green on 94bb787, approved with zero competing submissions.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — still the only open PR, CI green on 94bb787189b2, approved with zero competing submissions. Merge-ready.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

6 similar comments
@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — still the only open PR, CI green on 94bb787189b2, approved with zero competing submissions. Merge-ready.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — still the only open PR, CI green on 94bb787189b2, approved with zero competing submissions. Merge-ready.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — still the only open PR, CI green on 94bb787189b2, approved with zero competing submissions. Merge-ready.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — still the only open PR, CI green on 94bb787189b2, approved with zero competing submissions. Merge-ready.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — still the only open PR, CI green on 94bb787189b2, approved with zero competing submissions. Merge-ready.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — still the only open PR, CI green on 94bb787189b2, approved with zero competing submissions. Merge-ready.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

1 similar comment
@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Gentle follow-up — #794 remains the only open PR, CI still green, and both approvals are in from the prior review round. Ready to merge whenever convenient.

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Gentle follow-up — #794 remains the only open PR, CI still green, and both approvals are in from the prior review round. Ready to merge whenever convenient.

@yanyishuai
yanyishuai force-pushed the fix/issue-794-mcp-schema-conformance branch from 94bb787 to b3b928c Compare July 1, 2026 09:10
@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

1 similar comment
@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@qingfeng312 qingfeng312 left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Reviewed current head b3b928cc9def91cb906a00dddf102eb83ab81140.

Approving this head. The runtime now keeps omitted format defaulting to text while rejecting null, non-string values, control characters, and values outside the exact advertised text/json enum. The conformance helper preserves the JSON-RPC request envelope, and the new tests cover extra-property rejection, invalid selector combinations, non-canonical integer selectors, exact enum behavior, and accepted schema-valid submit_work_proof calls. Hosted quality/readiness checks are passing on this head; no blocking issue found.

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

5 similar comments
@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

8 similar comments
@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

4 similar comments
@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

4 similar comments
@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312CI fully green on latest head for bounty #794.

Fixes on current head (5d5264bb):

  • submit_work_proof.format now rejects non-exact enum values (" JSON ", "JSON", explicit null, etc.) to match JSON Schema conformance tests
  • Default text only when format is omitted

Still 2× APPROVED and merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

Merge-ready reminder

Dual APPROVED + CI green on 5d5264bb for #794.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 @taherdhanera Follow-up on #794 — MCP schema/runtime conformance guard still dual-APPROVED and mergeable=clean on 5d5264bbc0.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 @taherdhanera Follow-up on #794 — still dual-APPROVED + CI success + mergeable=clean.

Merge-ready whenever convenient.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

Tier-S merge ready on 5d5264b — dual APPROVED + CI green + mergeable=clean. Please merge when convenient.

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

1 similar comment
@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

@yanyishuai

Copy link
Copy Markdown
Author

Merge ping — CI green / mergeable=clean on 5d5264b (4x APPROVED MCP tests). Please merge when convenient — payout blocked on merge.

@yanyishuai

Copy link
Copy Markdown
Author

@qingfeng312 Follow-up on #794 — MCP schema/runtime conformance guard remains the only open PR, CI green on 94bb787189b2, and approval is already in.

Merge-ready whenever maintainers have bandwidth.

Wallet: Do4v7foHJvRJLpRRoGaVPWX6DDEjX3yTK7J91gpwUQpE

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Proposed work: add MCP schema/runtime conformance tests

3 participants