web_search
Search the web for information through a security-gated interface that applies policies and logs calls while enabling verifiable decision receipts.
Instructions
Search the web for information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query |
Implementation Reference
- src/demo-server.ts:123-125 (handler)The handler logic for the 'web_search' tool, which constructs a demo result string.
case 'web_search': resultText = `[demo] Search results for "${args.query || 'test'}":\n1. Example result — scopeblind.com\n2. MCP security — modelcontextprotocol.io`; break; - src/demo-server.ts:59-66 (schema)The schema registration for the 'web_search' tool.
name: 'web_search', description: 'Search the web for information', inputSchema: { type: 'object', properties: { query: { type: 'string', description: 'Search query' } }, required: ['query'], }, },