FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-sdk/examples/mcpserver/complex_inputs.py at main · evalstate/python-sdk · GitHub
evalstate
/
python-sdk
Public
forked from
modelcontextprotocol/python-sdk
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-sdk
/
examples
/
mcpserver
/
complex_inputs.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (19 loc) · 692 Bytes
Breadcrumbs
python-sdk
/
examples
/
mcpserver
/
complex_inputs.py
Copy path
File metadata and controls
29 lines (19 loc) · 692 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""MCPServer Complex inputs Example
Demonstrates validation via pydantic with complex models.
"""
from
typing
import
Annotated
from
pydantic
import
BaseModel
,
Field
from
mcp
.
server
.
mcpserver
import
MCPServer
mcp
=
MCPServer
(
"Shrimp Tank"
)
class
ShrimpTank
(
BaseModel
):
class
Shrimp
(
BaseModel
):
name
:
Annotated
[
str
,
Field
(
max_length
=
10
)]
shrimp
:
list
[
Shrimp
]
@
mcp
.
tool
()
def
name_shrimp
(
tank
:
ShrimpTank
,
# You can use pydantic Field in function signatures for validation.
extra_names
:
Annotated
[
list
[
str
],
Field
(
max_length
=
10
)],
)
->
list
[
str
]:
"""List all shrimp names in the tank"""
return
[
shrimp
.
name
for
shrimp
in
tank
.
shrimp
]
+
extra_names
Back
|
FazBrowse Home
|
New Git URL