10 lines
246 B
Python
10 lines
246 B
Python
from mcp.server import MCPServer
|
|
|
|
mcp = MCPServer("Bookshop")
|
|
|
|
|
|
@mcp.tool()
|
|
def search_books(query: str, limit: int) -> str:
|
|
"""Search the catalog by title or author."""
|
|
return f"Found 3 books matching {query!r} (showing up to {limit})."
|