YOUR_TOOL_NAME
Search the web for information using natural language queries through the Tavily API.
Instructions
YOUR_TOOL_DESCRIPTION
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Implementation Reference
- server.py:28-30 (handler)The main handler function for the 'YOUR_TOOL_NAME' tool. It is decorated with @mcp.tool() which also handles registration. This is a placeholder implementation returning a static response.def YOUR_TOOL_NAME(query: str) -> str: """YOUR_TOOL_DESCRIPTION""" return "YOUR_TOOL_RESPONSE"