You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl -s -X POST http://localhost:8000/api/execute \
-H "Content-Type: application/json" \
-d '{
"taskType": "code_generation",
"context": {
"language": "typescript",
"purpose": "MCP weather tool"
},
"prompt": "Create a simple TypeScript function that defines an MCP tool for getting weather information. Include:\n1. Tool definition with name 'get_weather'\n2. Parameters: city (string), units (optional)\n3. Return type definition\n4. Basic implementation that returns mock data\n5. Type annotations\n\nJust output clean, production-ready TypeScript code."