FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-sdk/docs_src/lowlevel/tutorial002.py at main · stophobia/python-sdk · GitHub
stophobia
/
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
0
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
/
docs_src
/
lowlevel
/
tutorial002.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
47 lines (39 loc) · 1.51 KB
Breadcrumbs
python-sdk
/
docs_src
/
lowlevel
/
tutorial002.py
Copy path
File metadata and controls
47 lines (39 loc) · 1.51 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from
mcp
.
server
import
Server
,
ServerRequestContext
from
mcp
.
types
import
(
CallToolRequestParams
,
CallToolResult
,
ListToolsResult
,
PaginatedRequestParams
,
TextContent
,
Tool
,
)
SEARCH_BOOKS
=
Tool
(
name
=
"search_books"
,
description
=
"Search the catalog by title or author."
,
input_schema
=
{
"type"
:
"object"
,
"properties"
: {
"query"
: {
"type"
:
"string"
},
"limit"
: {
"type"
:
"integer"
}},
"required"
: [
"query"
,
"limit"
],
},
)
ADD_BOOK
=
Tool
(
name
=
"add_book"
,
description
=
"Add a book to the catalog."
,
input_schema
=
{
"type"
:
"object"
,
"properties"
: {
"title"
: {
"type"
:
"string"
},
"author"
: {
"type"
:
"string"
},
"year"
: {
"type"
:
"integer"
}},
"required"
: [
"title"
,
"author"
,
"year"
],
},
)
async
def
list_tools
(
ctx
:
ServerRequestContext
,
params
:
PaginatedRequestParams
|
None
)
->
ListToolsResult
:
return
ListToolsResult
(
tools
=
[
SEARCH_BOOKS
,
ADD_BOOK
])
async
def
call_tool
(
ctx
:
ServerRequestContext
,
params
:
CallToolRequestParams
)
->
CallToolResult
:
args
=
params
.
arguments
or
{}
if
params
.
name
==
"search_books"
:
text
=
f"Found 3 books matching
{
args
[
'query'
]!r
}
(showing up to
{
args
[
'limit'
]
}
)."
elif
params
.
name
==
"add_book"
:
text
=
f"Added
{
args
[
'title'
]!r
}
by
{
args
[
'author'
]
}
(
{
args
[
'year'
]
}
)."
else
:
raise
ValueError
(
f"Unknown tool:
{
params
.
name
}
"
)
return
CallToolResult
(
content
=
[
TextContent
(
type
=
"text"
,
text
=
text
)])
server
=
Server
(
"Bookshop"
,
on_list_tools
=
list_tools
,
on_call_tool
=
call_tool
)
Back
|
FazBrowse Home
|
New Git URL