Deploy CrewAI crews and workflows to production
Crewship is the easiest way to host your CrewAI multi-agent systems. Deploy with a single command, get a production API endpoint, and let us handle the infrastructure.
One-Command Deploy
Deploy with `crewship deploy`. No Docker or Kubernetes required.
Real-time Streaming
Watch agents execute live with Server-Sent Events.
Auto-scaling
Scale to zero when idle, scale up automatically under load.
Secure by Default
Isolated environments and encrypted secrets management.
Deploy in three commands
Install the CLI, login, and deploy. Crewship automatically detects your CrewAI project, builds a container, and gives you a production API endpoint.
- Works with any CrewAI project structure
- Automatic dependency detection
- Secure secrets injection at runtime
$ curl -fsSL https://www.crewship.dev/install.sh | bash
$ crewship login
$ crewship init
$ crewship deploy
✓ Building container
✓ Deployed to my-crewTrigger runs via API
Your deployed crew gets a REST API endpoint. Trigger runs, pass inputs, and get results. Stream execution in real-time or poll for completion.
- RESTful API with token authentication
- Real-time streaming with SSE
- Webhook callbacks on completion
import requests
response = requests.post(
"https://api.crewship.dev/v1/runs",
headers={"Authorization": f"Bearer {api_key}"},
json={"deployment": "my-crew", "input": {"topic": "AI"}}
)
print(response.json())Monitor your crews in the console




What is CrewAI?
CrewAI is a Python framework for building multi-agent AI systems. It lets you create teams of AI agents that collaborate on complex tasks like research, content creation, and data analysis.
Each agent has a role, goal, and tools. They work together, delegating tasks and sharing information to produce high-quality outputs that would be difficult for a single AI to achieve.
Crewship handles the production infrastructure for CrewAI: deployment, scaling, monitoring, and security. You focus on building great crews, we handle the rest.
Ready to deploy your CrewAI crew?
Get started for free. No credit card required.