Skip to content

Fix minor typos in exercises #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

- JavaScript/TypeScript experience
- Node.js experience
- [Advanced MCP Features](https://www.epicai.pro/mcp-fundamentals) or equivalent
- [MCP Fundamentals](https://www.epicai.pro/mcp-fundamentals) or equivalent
experience.

## Pre-workshop Resources
Expand Down
2 changes: 1 addition & 1 deletion exercises/03.sampling/01.problem.simple/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The `maxTokens` option references the max tokens the model should return.

<callout-warning>
The `system prompt` + `messages` + `OUTPUT MESSAGE` can't exceed the context
window size of the model you're user is using.
window size of the model your user is using.
</callout-warning>

This step will help you get comfortable with the basic request/response flow for
Expand Down
2 changes: 1 addition & 1 deletion exercises/05.changes/03.problem.subscriptions/README.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Subscriptions

👨‍💼 When people use our EpicMe journaling MCP, they want the LLM they're using to always have the latest version of their jounraling data. Exposing subscriptions for resources (like a particular entry, tag, or video) allows clients to be notified of changes to specific resources the LLM is using in its context or the client may be using for other purposes.
👨‍💼 When people use our EpicMe journaling MCP, they want the LLM they're using to always have the latest version of their journaling data. Exposing subscriptions for resources (like a particular entry, tag, or video) allows clients to be notified of changes to specific resources the LLM is using in its context or the client may be using for other purposes.

To make this possible, our MCP server needs to support **resource subscriptions**. This means clients can subscribe to updates for specific resources, and the server will notify them when those resources change.

Expand Down