Skip to content

Commit 3cf702e

Browse files
authored
Merge pull request modelcontextprotocol#27 from modelcontextprotocol/zack-lee/final-qs
Updated quickstart
2 parents be2ef96 + c0b47d6 commit 3cf702e

File tree

2 files changed

+39
-9
lines changed

2 files changed

+39
-9
lines changed

images/quickstart-screenshot.png

2.25 MB
Loading

quickstart.mdx

Lines changed: 39 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,24 @@ brew install node git sqlite3
114114
INSERT INTO products (name, price) VALUES
115115
('Widget', 19.99),
116116
('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);
118135
EOF
119136
```
120137
</Step>
@@ -135,11 +152,7 @@ brew install node git sqlite3
135152
"mcpServers": {
136153
"sqlite": {
137154
"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"]
143156
}
144157
}
145158
}
@@ -171,7 +184,24 @@ brew install node git sqlite3
171184
INSERT INTO products (name, price) VALUES
172185
('Widget', 19.99),
173186
('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);
175205
'@
176206
177207
cd ~
@@ -229,8 +259,8 @@ Claude Desktop will:
229259
2. Query your local database
230260
3. Format and present the results
231261
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" />
234264
</Frame>
235265
236266
## What's happening under the hood?

0 commit comments

Comments
 (0)