GetQueryBuilderPrompt
Retrieve the system prompt for RushDB's query builder when your MCP client lacks Prompts API support, enabling database query construction.
Instructions
Return the RushDB Query Builder system prompt. Use this if your MCP client does not support Prompts API.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.ts:342-350 (handler)The handler for the 'GetQueryBuilderPrompt' tool. It returns the SYSTEM_PROMPT imported from './systemPrompt.js' as the text content of the tool response.case 'GetQueryBuilderPrompt': return { content: [ { type: 'text', text: SYSTEM_PROMPT } ] }
- tools.ts:315-320 (schema)The schema definition, description, and registration entry for the 'GetQueryBuilderPrompt' tool in the exported tools array.{ name: 'GetQueryBuilderPrompt', description: 'Return the RushDB Query Builder system prompt. Use this if your MCP client does not support Prompts API.', inputSchema: { type: 'object', properties: {}, required: [] } },
- tools.ts:33-33 (registration)The 'GetQueryBuilderPrompt' tool name is defined in the ToolName type union.| 'GetQueryBuilderPrompt'