global_search
Search across all Basecamp projects, todos, and campfire messages instantly to find relevant information quickly using a single query.
Instructions
Search projects, todos and campfire messages across all projects
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query |
Implementation Reference
- src/index.ts:139-149 (registration)Registration of the 'global_search' MCP tool, including its input schema definition and description. Note: No handler implementation found in the codebase.{ name: 'global_search', description: 'Search projects, todos and campfire messages across all projects', inputSchema: { type: 'object', properties: { query: { type: 'string', description: 'Search query' }, }, required: ['query'], }, },
- src/index.ts:142-148 (schema)Input schema for the 'global_search' tool: requires a 'query' string.inputSchema: { type: 'object', properties: { query: { type: 'string', description: 'Search query' }, }, required: ['query'], },