1
- from typing import Annotated , Any , Callable , Generic , Literal , TypeAlias , TypeVar
1
+ from typing import (
2
+ Annotated ,
3
+ Any ,
4
+ Callable ,
5
+ Generic ,
6
+ Literal ,
7
+ TypeAlias ,
8
+ TypeVar ,
9
+ )
2
10
3
11
from pydantic import BaseModel , ConfigDict , Field , FileUrl , RootModel
4
- from pydantic .networks import AnyUrl
12
+ from pydantic .networks import AnyUrl , UrlConstraints
5
13
6
14
"""
7
15
Model Context Protocol bindings for Python
@@ -353,7 +361,7 @@ class Annotations(BaseModel):
353
361
class Resource (BaseModel ):
354
362
"""A known resource that the server is capable of reading."""
355
363
356
- uri : AnyUrl
364
+ uri : Annotated [ AnyUrl , UrlConstraints ( host_required = False )]
357
365
"""The URI of this resource."""
358
366
name : str
359
367
"""A human-readable name for this resource."""
@@ -415,7 +423,7 @@ class ListResourceTemplatesResult(PaginatedResult):
415
423
class ReadResourceRequestParams (RequestParams ):
416
424
"""Parameters for reading a resource."""
417
425
418
- uri : AnyUrl
426
+ uri : Annotated [ AnyUrl , UrlConstraints ( host_required = False )]
419
427
"""
420
428
The URI of the resource to read. The URI can use any protocol; it is up to the
421
429
server how to interpret it.
@@ -433,7 +441,7 @@ class ReadResourceRequest(Request):
433
441
class ResourceContents (BaseModel ):
434
442
"""The contents of a specific resource or sub-resource."""
435
443
436
- uri : AnyUrl
444
+ uri : Annotated [ AnyUrl , UrlConstraints ( host_required = False )]
437
445
"""The URI of this resource."""
438
446
mimeType : str | None = None
439
447
"""The MIME type of this resource, if known."""
@@ -476,7 +484,7 @@ class ResourceListChangedNotification(Notification):
476
484
class SubscribeRequestParams (RequestParams ):
477
485
"""Parameters for subscribing to a resource."""
478
486
479
- uri : AnyUrl
487
+ uri : Annotated [ AnyUrl , UrlConstraints ( host_required = False )]
480
488
"""
481
489
The URI of the resource to subscribe to. The URI can use any protocol; it is up to
482
490
the server how to interpret it.
@@ -497,7 +505,7 @@ class SubscribeRequest(Request):
497
505
class UnsubscribeRequestParams (RequestParams ):
498
506
"""Parameters for unsubscribing from a resource."""
499
507
500
- uri : AnyUrl
508
+ uri : Annotated [ AnyUrl , UrlConstraints ( host_required = False )]
501
509
"""The URI of the resource to unsubscribe from."""
502
510
model_config = ConfigDict (extra = "allow" )
503
511
@@ -515,7 +523,7 @@ class UnsubscribeRequest(Request):
515
523
class ResourceUpdatedNotificationParams (NotificationParams ):
516
524
"""Parameters for resource update notifications."""
517
525
518
- uri : AnyUrl
526
+ uri : Annotated [ AnyUrl , UrlConstraints ( host_required = False )]
519
527
"""
520
528
The URI of the resource that has been updated. This might be a sub-resource of the
521
529
one that the client actually subscribed to.
0 commit comments