Software Development with Claude Code
Dani Zysman
AI Curriculum Manager @ DataCamp

Real data to explore with Claude!
music-analytics-api/
app.py
routes.py
test_routes.py
models.py
chinook.db # <- SQLite database file
CLAUDE.md
.claude/ # Previous Agents, Skills and Hooks
SQLite: A self-contained database in a single file. No server setup needed.

$ claude mcp add-json sqlite '{"command": "uvx", "args": ["mcp-server-sqlite", "--db-path","~/chinook.db"1}'Added stdio MCP server sqlite to local config$ claude > /mcp
> Show me all Pink Floyd albums
Here are all the albums by Pink Floyd in the database:
Album ID: 183
Title: Dark Side Of The Moon
Artist: ID 120
There is 1 album by Pink Floyd in the database.

Software Development with Claude Code