exceptions
MCPDeprecationWarning
Bases: UserWarning
A custom deprecation warning for the MCP SDK.
Unlike the built-in DeprecationWarning, this inherits from UserWarning so
it is shown by default, helping users discover deprecated features without
enabling warnings explicitly.
Reference: https://sethmlarson.dev/deprecations-via-warnings-dont-work-for-python-libraries
Source code in src/mcp/shared/exceptions.py
8 9 10 11 12 13 14 15 16 | |
MCPError
Bases: Exception
Exception type raised when an error arrives over an MCP connection.
Source code in src/mcp/shared/exceptions.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | |
NoBackChannelError
Bases: MCPError
Raised when sending a server-initiated request over a transport that cannot deliver it.
Stateless HTTP and JSON-response-mode HTTP have no channel for the server to
push requests (sampling, elicitation, roots/list) to the client. This is
raised by DispatchContext.send_raw_request when can_send_request is
False, and serializes to an INVALID_REQUEST error response.
Source code in src/mcp/shared/exceptions.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | |
UrlElicitationRequiredError
Bases: MCPError
Specialized error for when a tool requires URL mode elicitation(s) before proceeding.
Servers can raise this error from tool handlers to indicate that the client must complete one or more URL elicitations before the request can be processed.
Example
raise UrlElicitationRequiredError([
ElicitRequestURLParams(
message="Authorization required for your files",
url="https://example.com/oauth/authorize",
elicitation_id="auth-001"
)
])
Source code in src/mcp/shared/exceptions.py
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 | |
__init__
__init__(
elicitations: list[ElicitRequestURLParams],
message: str | None = None,
)
Initialize UrlElicitationRequiredError.
Source code in src/mcp/shared/exceptions.py
92 93 94 95 96 97 98 99 100 101 102 103 | |
elicitations
property
elicitations: list[ElicitRequestURLParams]
The list of URL elicitations required before the request can proceed.
from_error
classmethod
from_error(error: ErrorData) -> UrlElicitationRequiredError
Reconstruct from an ErrorData received over the wire.
Source code in src/mcp/shared/exceptions.py
110 111 112 113 114 115 116 117 118 119 | |