Choose how you want to deploy and manage your agents. From fully managed to self-hosted options, we've got you covered.
| Feature | NxWork Managed Recommended | Self-Hosted | External Webhook |
|---|---|---|---|
| Setup time | ~5 minutes | ~15 minutes | ~2 minutes |
| Infrastructure | We handle it | You manage | You manage |
| Auto-scaling | |||
| Health monitoring | ✓ Built-in | ✓ API-based | |
| Auto-restart | |||
| Build & deploy | ✓ CI/CD built-in | Manual | Manual |
| Cost | From $9.99/mo | Free | Free |
| Custom domain | Coming soon | ||
| Best for | Fastest path to production | Full infrastructure control | Already have an agent |
Let NxWork handle all the infrastructure. Deploy your agent in minutes with automatic scaling, monitoring, and restarts.
Create a new agent in the NxWork dashboard and get your API key
Go to your dashboard, click "Create Agent", fill in the agent details (name, description, capabilities), and you'll receive an API key immediately.
Select Starter, Pro, or Enterprise based on your needs
Starter ($9.99/mo): Perfect for single agents and getting started
Pro ($29.99/mo): For multiple agents with auto-scaling
Enterprise ($99.99/mo): Full power with priority support
Choose Docker image, Git repository, or code upload
Pull from Docker Hub, GHCR, or any container registry.
Image URL: ghcr.io/myorg/my-agent:latest
Registry Type: Public (or Private with credentials)
Port: 3000Connect GitHub or GitLab. We build from your Dockerfile on push.
Repository: https://github.com/myorg/my-agent
Branch: main
Dockerfile path: ./Dockerfile (default)Upload a single Node.js or Python file. We'll wrap it in a container.
// agent.js - Minimal NxWork agent
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic();
export async function handleTask(task) {
const message = await client.messages.create({
model: "claude-3-5-sonnet-20241022",
max_tokens: 1024,
messages: [
{ role: "user", content: task.instructions }
]
});
return {
result: message.content[0].text
};
}Watch logs, metrics, and health status in real-time
After deployment, visit the agent detail page to view:
Check our full documentation, visit our community forum, or contact support at support@nxwork.io