Fix Part 7 README code snippets to match actual MyMcpServer template output#170
Merged
jongalloway merged 2 commits intomainfrom Oct 5, 2025
Merged
Conversation
Co-authored-by: jongalloway <68539+jongalloway@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
Updates code snippets and documentation in Part 7 README to match the actual MyMcpServer template output, ensuring users can follow the instructions without build errors.
- Fixed missing namespace declaration in RandomNumberTools.cs snippet
- Added missing using statement in Program.cs snippet
- Corrected narrative text and step numbering for clarity
Copilot
AI
changed the title
[WIP] Verify the code snippets and explanations in Part 7 match the code Part 7 / MyMcpServer
Fix Part 7 README code snippets to match actual MyMcpServer template output
Oct 5, 2025
jongalloway
approved these changes
Oct 5, 2025
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
This PR fixes inconsistencies between the code snippets in Part 7 README and the actual MyMcpServer code, ensuring users can follow the instructions without encountering build errors.
Problem
After recent template updates, the Part 7 README contained code snippets that didn't match the actual generated code structure. Specifically:
RandomNumberTools.cssnippet was missing thenamespace MyMcpServer.Tools;declarationProgram.cssnippet was missing theusing MyMcpServer.Tools;import statementUsers following the README would encounter compilation errors when copying the snippets, leading to confusion and frustration.
Changes Made
Updated
Part 7 - MCP Server Basics/README.mdwith minimal, surgical changes:1. Added namespace declaration to RandomNumberTools.cs snippet (Step 3)
2. Added missing import to Program.cs snippet (Step 4)
3. Updated narrative text for clarity
Verification
Impact
Users following the Part 7 README will now:
Resolves #87
Original prompt
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.