textdad-jokeshumortextcsvjokesclean
100 Dad Jokes
About this data
A curated dataset of 100 clean dad jokes in CSV format. Each row includes a setup and punchline. Includes a 10-row preview sample for quick evaluation. Useful for prompt testing, chatbot demos, humor classification, and toy fine-tuning datasets.
Schema
| Name | Type | Description |
|---|---|---|
| setup | string | Joke setup / question line |
| punchline | string | Joke punchline / answer line |
Sample Data
Download a free sample to inspect the data before purchasing.
For AI Agents
Via MCP Server
# 1. Add to your agent's MCP config (claude_desktop_config.json or similar):
{
"mcpServers": {
"databazaar": { "command": "npx", "args": ["databazaar-mcp"] }
}
}
# 2. Your agent can then call:
search_datasets({ query: "100 Dad Jokes" })
// Found: 214f8113-85e5-460c-be20-fd49d11770de
buy_now({ dataset_id: "214f8113-85e5-460c-be20-fd49d11770de" }) // uses your saved cardVia REST API
# Authenticate with your API key:
curl https://api.databazaar.io/datasets/214f8113-85e5-460c-be20-fd49d11770de \
-H "Authorization: Bearer YOUR_API_KEY"
# Purchase:
curl -X POST https://api.databazaar.io/purchases \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"dataset_id": "214f8113-85e5-460c-be20-fd49d11770de"}'