fix: drop stale mcpServerInformation.json references - #205
Merged
Conversation
PR #173 moved MCP server configuration into apiInformation.json and stopped producing the mcpServerInformation.json sidecar, but the all-resource-types integration manifest and reference docs still expected it. This caused the round-trip test to fail (2 checks) on the src-mcp-todos MCP API. - expected-structure.json: remove the sidecar from src-mcp-todos and fold its spot-checks (mcpProperties.endpoints.mcp.uriTemplate, mcpTools) into apiInformation.json where the data now lives. - artifact-format.md / resource-types.md: mark McpServer config as embedded in apiInformation.json instead of the removed sidecar file.
petehauge
approved these changes
Jul 1, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PR #173 moved MCP (Model Context Protocol) server configuration into
apiInformation.jsonand stopped producing/consuming the redundantmcpServerInformation.jsonsidecar. Several references to that removed sidecar were left behind, causing theall-resource-typesround-trip integration test to fail (2 of 349 checks) on thesrc-mcp-todosMCP API — it still expected amcpServerInformation.jsonfile that is no longer emitted.This PR removes the stale references so the manifest and docs reflect the post-#173 behavior.
Changes
tests/integration/all-resource-types/expected-structure.json— forsrc-mcp-todos, removemcpServerInformation.jsonfrom the expectedfileslist and delete its spot-check block; fold the two checks (properties.mcpProperties.endpoints.mcp.uriTemplateandproperties.mcpTools) into theapiInformation.jsonspot-check where the data now lives.docs/reference/artifact-format.md— drop themcpServerInformation.jsonline from the directory tree, annotateapiInformation.jsonas carrying MCP server config, and update the McpServer table row to embedded inapiInformation.json.docs/reference/resource-types.md— update the McpServer row's info-file column to embedded inapiInformation.json.Validation
Re-ran the artifact validation phase (
Test-ExtractedArtifact.ps1) against the extracted artifacts from a Premium round-trip run:Related
Notes
This is a test-manifest/docs staleness fix only — no
src/behavior changes.