YOUR_TOOL_NAME
Search the web for current information using natural language queries to find answers, data, and insights from online sources.
Instructions
YOUR_TOOL_DESCRIPTION
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}
Implementation Reference
- server.py:27-27 (registration)Registration of the YOUR_TOOL_NAME tool using the @mcp.tool() decorator.@mcp.tool()
- server.py:28-30 (handler)The handler function implementing the tool logic for YOUR_TOOL_NAME, which currently returns a placeholder response.def YOUR_TOOL_NAME(query: str) -> str: """YOUR_TOOL_DESCRIPTION""" return "YOUR_TOOL_RESPONSE"