Skip to content

Commit f51a83b

Browse files
Update docs/spec/resources.md
Co-authored-by: Justin Spahr-Summers <[email protected]>
1 parent 8fe2651 commit f51a83b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/spec/resources.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ Resources enable servers to expose arbitrary data to clients in a structured way
1313
Common usecases for resources include file and folder access, but can extend to any other form. See [list of common URI schemes](#list-of-common-uri-schemas) for more information. Here are examples of kinds of resources that an MCP server could expose:
1414

1515
### File Access
16-
A common use case for resourecs is exposing a file as a binary stream. The server would prefix any file
17-
with the `file://` scheme ensure that the client is aware of the how to interpret the file by providing
18-
a correct mime type. When the client issues a `resources/read` request, the server *must* ensure that it
19-
returns the file in the correct encoding for the mime type (e.g. base64 encoded bytes).
16+
A common use case for resources is to expose files. The server should prefix any file-like resource
17+
with the `file://` scheme, and ensure that the client is aware of how to interpret the file by providing
18+
a correct MIME type. When the client issues a `resources/read` request, the server *must* ensure that it
19+
returns the file in the correct encoding for the mime type (e.g., text if possible, or base64 for any binary data).
2020

2121
```json
2222
{

0 commit comments

Comments
 (0)