Skip to content

Commit f90cf6a

Browse files
committed
docs: update read_resource examples to handle mime type
Update README examples to show proper handling of the new read_resource() return value that includes mime type information. Github-Issue:#152
1 parent 8ff4b5e commit f90cf6a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CLAUDE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This document contains critical information about working with this codebase. Fo
3333

3434
- For commits related to a Github issue, add
3535
```bash
36-
git commit --trailer "Github-Issue:<number>"
36+
git commit --trailer "Github-Issue:#<number>"
3737
```
3838
- NEVER ever mention a `co-authored-by` or similar aspects. In particular, never
3939
mention the tool used to create the commit message or PR.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ async def long_task(files: list[str], ctx: Context) -> str:
218218
for i, file in enumerate(files):
219219
ctx.info(f"Processing {file}")
220220
await ctx.report_progress(i, len(files))
221-
data = await ctx.read_resource(f"file://{file}")
221+
data, mime_type = await ctx.read_resource(f"file://{file}")
222222
return "Processing complete"
223223
```
224224

@@ -436,7 +436,7 @@ async def run():
436436
tools = await session.list_tools()
437437

438438
# Read a resource
439-
resource = await session.read_resource("file://some/path")
439+
content, mime_type = await session.read_resource("file://some/path")
440440

441441
# Call a tool
442442
result = await session.call_tool("tool-name", arguments={"arg1": "value"})

0 commit comments

Comments
 (0)