Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 docs/concepts/roots/roots.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Roots provide a mechanism for the client to tell the server which directories, p

- Scope file searches to the user's project directories
- Understand which repositories are being worked on
- Limit operations to specific filesystem boundaries
- Focus operations on relevant filesystem locations

Each root is represented by a <xref:ModelContextProtocol.Protocol.Root> with a URI and an optional human-readable name.

Expand Down
7 changes: 4 additions & 3 deletions src/ModelContextProtocol.Core/Protocol/NotificationMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ public static class NotificationMethods
/// <remarks>
/// <para>
/// This notification informs the server that the client's "roots" have changed.
/// Roots define the boundaries of where servers can operate within the filesystem,
/// allowing them to understand which directories and files they have access to. Servers
/// can request the list of roots from supporting clients and receive notifications when that list changes.
/// Roots inform servers about the directories and files the client considers relevant,
/// so that servers can focus their operations accordingly. They are informational guidance
/// rather than an access-control mechanism; the protocol does not enforce that servers stay within roots.
/// Servers can request the list of roots from supporting clients and receive notifications when that list changes.
/// </para>
/// <para>
/// After receiving this notification, servers can refresh their knowledge of roots by calling the appropriate
Expand Down
Loading