Skip to content

Commit 59dab07

Browse files
committed
add returns to all tips
1 parent 39e1c9c commit 59dab07

File tree

5 files changed

+14
-0
lines changed

5 files changed

+14
-0
lines changed

units/en/unit3/build-mcp-server.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ Unlike traditional systems that categorize changes based on file extensions or r
100100
- Keep the logic simple - Claude handles the complexity
101101

102102
<Tip>
103+
103104
**MCP Philosophy**: Instead of building complex logic into your tools, provide Claude with rich data and let its intelligence make the decisions. This makes your code simpler and more flexible than traditional rule-based systems.
105+
104106
</Tip>
105107

106108
## Testing Your Implementation

units/en/unit3/conclusion.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ Your three-module journey tackled real problems that every development team face
6565
The patterns you've learned can be applied to many automation scenarios:
6666

6767
<Tip>
68+
6869
**Beyond CI/CD**: The Tools + Prompts pattern works for customer support automation, content moderation, data analysis workflows, and any scenario where you need intelligent processing of external data.
70+
6971
</Tip>
7072

7173
### Common Patterns from Unit 3
@@ -95,7 +97,9 @@ The patterns you've learned can be applied to many automation scenarios:
9597
## Key Takeaways
9698

9799
<Tip>
100+
98101
**MCP Philosophy**: The most effective MCP servers don't try to be smart - they provide Claude with rich, structured data and let Claude's intelligence do the heavy lifting. This makes your code simpler and more flexible.
102+
99103
</Tip>
100104

101105
### Technical Insights

units/en/unit3/github-actions-integration.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ Your MCP server will run two services:
6262
This allows Claude to react to real-time CI/CD events!
6363

6464
<Tip>
65+
6566
**Architecture Insight**: Running separate services for MCP communication and webhook handling is a clean separation of concerns. The webhook server handles HTTP complexity while your MCP server focuses on data analysis and Claude integration.
67+
6668
</Tip>
6769

6870
## Project Structure
@@ -119,7 +121,9 @@ EVENTS_FILE = Path(__file__).parent / "github_events.json"
119121
The webhook server handles all the HTTP details - you just need to read the JSON file! This separation of concerns keeps your MCP server focused on what it does best.
120122

121123
<Tip>
124+
122125
**Development Tip**: Working with files instead of HTTP requests makes testing much easier. You can manually add events to `github_events.json` to test your tools without setting up webhooks.
126+
123127
</Tip>
124128

125129
### Step 3: Add GitHub Actions Tools

units/en/unit3/introduction.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ Before starting this unit, ensure you have:
5959
This unit requires Claude Code to test your MCP server integration.
6060

6161
<Tip>
62+
6263
**Installation Required:** This unit requires Claude Code for testing MCP server integration with AI workflows.
64+
6365
</Tip>
6466

6567
**Quick Setup:**

units/en/unit3/slack-notification.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,9 @@ You've now built a complete MCP workflow that demonstrates:
318318
This shows the power of MCP for building practical development automation tools!
319319

320320
<Tip>
321+
321322
**Key Learning**: You've now built a complete MCP workflow that combines Tools (for external API calls) with Prompts (for consistent formatting). This pattern of Tools + Prompts is fundamental to advanced MCP development and can be applied to many other automation scenarios.
323+
322324
</Tip>
323325

324326
## Next Steps

0 commit comments

Comments
 (0)