49b9bb6724
Deploy Docs / deploy-docs (push) Failing after 1s
Conformance Tests / client-conformance (push) Failing after 3s
Conformance Tests / server-conformance (push) Failing after 1s
GitHub Actions Security Analysis / zizmor (push) Failing after 1s
CI / checks (push) Failing after 59m20s
CI / all-green (push) Waiting to run
15 lines
456 B
Python
15 lines
456 B
Python
from mcp.server import MCPServer
|
|
from mcp.server.mcpserver.exceptions import ResourceNotFoundError
|
|
|
|
mcp = MCPServer("Bookshop")
|
|
|
|
CATALOG = {"Dune": "Frank Herbert", "Neuromancer": "William Gibson"}
|
|
|
|
|
|
@mcp.resource("books://{title}")
|
|
def book(title: str) -> str:
|
|
"""The catalog entry for one book."""
|
|
if title not in CATALOG:
|
|
raise ResourceNotFoundError(f"No book titled {title!r} in the catalog.")
|
|
return f"{title} by {CATALOG[title]}"
|