Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog/0.5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
## Added

- Enabled `terminate_virtual_workspace` tool with safety confirmation ellicitation
- New `onboarding_user` prompt to guide users through the initial helios setup process
- New `database_onboarding` prompt to guide users through the process of setting up a new database
- New `help` prompt to provide an overview of the SingleStore MCP server capabilities, available tools, resources, and prompts
12 changes: 7 additions & 5 deletions src/api/prompts/prompts.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def onboarding_helios_user() -> list:
"Let's create a starter workspace if I don't have one yet. Then, populate the database with sample data.",
),
AssistantMessage(
"Step 3: Load sample data into your new database. Try running this SQL in your virtual workspace:"
"Step 3: First, let's create a table to store our sample customer data:"
),
AssistantMessage(
"""\
Expand All @@ -31,13 +31,15 @@ def onboarding_helios_user() -> list:
email VARCHAR(100),
country VARCHAR(50),
PRIMARY KEY (id)
);

);"""
),
AssistantMessage("Great! Now let's add some sample data to our table:"),
AssistantMessage(
"""\
INSERT INTO sample_customers VALUES
(1, 'John Doe', 'john@example.com', 'USA'),
(2, 'Jane Smith', 'jane@example.com', 'Canada'),
(3, 'Alice Johnson', 'alice@example.com', 'UK');
"""
(3, 'Alice Johnson', 'alice@example.com', 'UK');"""
),
AssistantMessage("Step 4: Try your first query!"),
UserMessage("Let's run a simple select query to see our data."),
Expand Down