--- title: Prompts description: Overview of the prompts available when using the Actian MCP Server with Actian NoSQL Database. --- # Prompts The Actian MCP Server for Actian NoSQL includes a built-in prompt that converts plain language questions into expert-level database queries. ## Available Prompts | Prompt | Description | |--------|-------------| | [`ask_question`](#ask_question) | Formats a plain language question into a structured prompt template designed for database experts. | ## ask_question Renders a database expert prompt from a plain language question and returns the formatted prompt text ready for use. ### Parameters | Field | Type | Required | Description | |-------|------|:--------:|-------------| | `question` | `string` | ✓ | The specific question you want to insert into the expert prompt template. | ### Output Template ```text You are an Actian NoSQL database expert. Answer the following question: ``` ### Example **Input** ```json { "question": "What are the top 5 customers by revenue this quarter?" } ``` **Output** ```text You are an Actian NoSQL database expert. Answer the following question: What are the top 5 customers by revenue this quarter? ``` ## Next Steps
- :material-tools: **[Tools](../tools/index.md)** Explore the available MCP tools for NoSQL database operations. - :material-folder-open: **[Resources](../resources/index.md)** Learn more about schema metadata resources.