types
Concrete resource implementations.
TextResource
Bases: Resource
A resource that reads from a string.
Source code in src/mcp/server/mcpserver/resources/types.py
22 23 24 25 26 27 28 29 | |
read
async
read() -> str
Read the text content.
Source code in src/mcp/server/mcpserver/resources/types.py
27 28 29 | |
BinaryResource
Bases: Resource
A resource that reads from bytes.
Source code in src/mcp/server/mcpserver/resources/types.py
32 33 34 35 36 37 38 39 | |
read
async
read() -> bytes
Read the binary content.
Source code in src/mcp/server/mcpserver/resources/types.py
37 38 39 | |
FunctionResource
Bases: Resource
A resource that defers data loading by wrapping a function.
The function is only called when the resource is read, allowing for lazy loading of potentially expensive data. This is particularly useful when listing resources, as the function won't be called until the resource is actually accessed.
The function can return: - str for text content (default) - bytes for binary content - other types will be converted to JSON
Source code in src/mcp/server/mcpserver/resources/types.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | |
read
async
Read the resource by calling the wrapped function.
Source code in src/mcp/server/mcpserver/resources/types.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |
from_function
classmethod
from_function(
fn: Callable[..., Any],
uri: str,
name: str | None = None,
title: str | None = None,
description: str | None = None,
mime_type: str | None = None,
icons: list[Icon] | None = None,
annotations: Annotations | None = None,
meta: dict[str, Any] | None = None,
) -> FunctionResource
Create a FunctionResource from a function.
Source code in src/mcp/server/mcpserver/resources/types.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | |
FileResource
Bases: Resource
A resource that reads from a file.
Set is_binary=True to read the file as binary data instead of text.
Source code in src/mcp/server/mcpserver/resources/types.py
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | |
validate_absolute_path
classmethod
Ensure path is absolute.
Source code in src/mcp/server/mcpserver/resources/types.py
127 128 129 130 131 132 133 | |
set_binary_from_mime_type
classmethod
set_binary_from_mime_type(
is_binary: bool, info: ValidationInfo
) -> bool
Set is_binary based on mime_type if not explicitly set.
Source code in src/mcp/server/mcpserver/resources/types.py
135 136 137 138 139 140 141 142 | |
read
async
Read the file content.
Source code in src/mcp/server/mcpserver/resources/types.py
144 145 146 147 148 149 150 151 | |
HttpResource
Bases: Resource
A resource that reads from an HTTP endpoint.
Source code in src/mcp/server/mcpserver/resources/types.py
154 155 156 157 158 159 160 161 162 163 164 165 | |
read
async
Read the HTTP content.
Source code in src/mcp/server/mcpserver/resources/types.py
160 161 162 163 164 165 | |
DirectoryResource
Bases: Resource
A resource that lists files in a directory.
Source code in src/mcp/server/mcpserver/resources/types.py
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | |
validate_absolute_path
classmethod
Ensure path is absolute.
Source code in src/mcp/server/mcpserver/resources/types.py
176 177 178 179 180 181 182 | |
list_files
List files in the directory.
Source code in src/mcp/server/mcpserver/resources/types.py
184 185 186 187 188 189 190 191 192 193 194 195 196 | |
read
async
read() -> str
Read the directory listing.
Source code in src/mcp/server/mcpserver/resources/types.py
198 199 200 201 202 203 204 205 | |