types
Concrete resource implementations.
TextResource
Bases: Resource
A resource that reads from a string.
Source code in src/mcp/server/mcpserver/resources/types.py
23 24 25 26 27 28 29 30 | |
read
async
read() -> str
Read the text content.
Source code in src/mcp/server/mcpserver/resources/types.py
28 29 30 | |
BinaryResource
Bases: Resource
A resource that reads from bytes.
Source code in src/mcp/server/mcpserver/resources/types.py
33 34 35 36 37 38 39 40 | |
read
async
read() -> bytes
Read the binary content.
Source code in src/mcp/server/mcpserver/resources/types.py
38 39 40 | |
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
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 109 110 111 112 113 114 115 116 117 118 119 | |
read
async
Read the resource by calling the wrapped function.
Source code in src/mcp/server/mcpserver/resources/types.py
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 | |
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
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | |
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
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 152 153 154 155 156 157 158 159 160 161 162 | |
validate_absolute_path
classmethod
Ensure path is absolute.
Source code in src/mcp/server/mcpserver/resources/types.py
138 139 140 141 142 143 144 | |
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
146 147 148 149 150 151 152 153 | |
read
async
Read the file content.
Source code in src/mcp/server/mcpserver/resources/types.py
155 156 157 158 159 160 161 162 | |
HttpResource
Bases: Resource
A resource that reads from an HTTP endpoint.
Source code in src/mcp/server/mcpserver/resources/types.py
165 166 167 168 169 170 171 172 173 174 175 176 | |
read
async
Read the HTTP content.
Source code in src/mcp/server/mcpserver/resources/types.py
171 172 173 174 175 176 | |
DirectoryResource
Bases: Resource
A resource that lists files in a directory.
Source code in src/mcp/server/mcpserver/resources/types.py
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 206 207 208 209 210 211 212 213 214 215 216 | |
validate_absolute_path
classmethod
Ensure path is absolute.
Source code in src/mcp/server/mcpserver/resources/types.py
187 188 189 190 191 192 193 | |
list_files
List files in the directory.
Source code in src/mcp/server/mcpserver/resources/types.py
195 196 197 198 199 200 201 202 203 204 205 206 207 | |
read
async
read() -> str
Read the directory listing.
Source code in src/mcp/server/mcpserver/resources/types.py
209 210 211 212 213 214 215 216 | |