dad-mcp
If you are the rightful owner of dad-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
DadMCP is a remote Model Context Protocol server designed to enhance children's creativity through AI-powered education at home.
DadMCP
Spark your kid's creativity with AI-powered education at home. Remote MCP server for dad-powered learning.
Connecting to Remote MCP Server
{
"mcpServers": {
"DadMCP": {
"command": "npx",
"args": [
"mcp-remote",
"https://dadmcp.com/sse?token=YourAccessToken"
]
}
}
}
Running Locally
Set up local Supabase
npx supabase@beta start
npx supabase@beta reset
npx supabase@beta gen types typescript --local > lib/database.types.ts
Update .env.local
NEXT_PUBLIC_SUPABASE_URL=http://127.0.0.1:54321
NEXT_PUBLIC_SUPABASE_ANON_KEY=YourSupabaseAnonKey
REDIS_URL=redis://localhost:6379
REPLICATE_API_TOKEN=YouReplicateApiToken
Run Redis, install dependencies and run Next.js server
redis-server
pnpm i
pnpm run dev