@@ -114,7 +114,24 @@ brew install node git sqlite3
114
114
INSERT INTO products (name, price) VALUES
115
115
('Widget', 19.99),
116
116
('Gadget', 29.99),
117
- ('Gizmo', 39.99);
117
+ ('Gizmo', 39.99),
118
+ ('Smart Watch', 199.99),
119
+ ('Wireless Earbuds', 89.99),
120
+ ('Portable Charger', 24.99),
121
+ ('Bluetooth Speaker', 79.99),
122
+ ('Phone Stand', 15.99),
123
+ ('Laptop Sleeve', 34.99),
124
+ ('Mini Drone', 299.99),
125
+ ('LED Desk Lamp', 45.99),
126
+ ('Keyboard', 129.99),
127
+ ('Mouse Pad', 12.99),
128
+ ('USB Hub', 49.99),
129
+ ('Webcam', 69.99),
130
+ ('Screen Protector', 9.99),
131
+ ('Travel Adapter', 27.99),
132
+ ('Gaming Headset', 159.99),
133
+ ('Fitness Tracker', 119.99),
134
+ ('Portable SSD', 179.99);
118
135
EOF
119
136
` ` `
120
137
< /Step>
@@ -135,11 +152,7 @@ brew install node git sqlite3
135
152
" mcpServers" : {
136
153
" sqlite" : {
137
154
" command" : " uvx" ,
138
- " args" : [
139
- " mcp-server-sqlite" ,
140
- " --db-path" ,
141
- " /Users/YOUR_USERNAME/test.db"
142
- ]
155
+ " args" : [" mcp-server-sqlite" , " --db-path" , " /Users/YOUR_USERNAME/test.db" ]
143
156
}
144
157
}
145
158
}
@@ -171,7 +184,24 @@ brew install node git sqlite3
171
184
INSERT INTO products (name, price) VALUES
172
185
(' Widget' , 19.99),
173
186
(' Gadget' , 29.99),
174
- (' Gizmo' , 39.99);
187
+ (' Gizmo' , 39.99),
188
+ (' Smart Watch' , 199.99),
189
+ (' Wireless Earbuds' , 89.99),
190
+ (' Portable Charger' , 24.99),
191
+ (' Bluetooth Speaker' , 79.99),
192
+ (' Phone Stand' , 15.99),
193
+ (' Laptop Sleeve' , 34.99),
194
+ (' Mini Drone' , 299.99),
195
+ (' LED Desk Lamp' , 45.99),
196
+ (' Keyboard' , 129.99),
197
+ (' Mouse Pad' , 12.99),
198
+ (' USB Hub' , 49.99),
199
+ (' Webcam' , 69.99),
200
+ (' Screen Protector' , 9.99),
201
+ (' Travel Adapter' , 27.99),
202
+ (' Gaming Headset' , 159.99),
203
+ (' Fitness Tracker' , 119.99),
204
+ (' Portable SSD' , 179.99);
175
205
' @
176
206
177
207
cd ~
@@ -229,8 +259,8 @@ Claude Desktop will:
229
259
2. Query your local database
230
260
3. Format and present the results
231
261
232
- < Frame>
233
- < img src=" /api/placeholder/800/400 " alt=" Example Claude Desktop conversation showing database query results" />
262
+ < Frame caption= " Claude Desktop successfully queries our SQLite database 🎉 " >
263
+ < img src=" /images/quickstart-screenshot.png " alt=" Example Claude Desktop conversation showing database query results" />
234
264
< /Frame>
235
265
236
266
# # What's happening under the hood?
0 commit comments