mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-06 08:16:02 +00:00
11 lines
238 B
Python
11 lines
238 B
Python
from mcp import tool
|
|
|
|
@mcp.tool()
|
|
def get_weather(city: str) -> str:
|
|
"""Get weather for a city."""
|
|
return f"Weather in {city}: sunny"
|
|
|
|
@mcp.tool()
|
|
def search_docs(query: str) -> list:
|
|
"""Search documentation."""
|
|
return []
|