10 lines
168 B
Python
10 lines
168 B
Python
from mcp.server import MCPServer
|
|
|
|
mcp = MCPServer("Web")
|
|
|
|
|
|
@mcp.tool()
|
|
def search(query: str) -> str:
|
|
"""Search the web."""
|
|
return f"12 pages match {query!r}."
|