Returns a real-time SSE stream of deployment logs and status updates. Connect to this endpoint to receive live updates as the deployment progresses.
GET
/
servers
/
{namespace}
/
deployments
/
{id}
/
stream
JavaScript
Copy
Ask AI
import Smithery from '@smithery/api';const client = new Smithery({ apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted});const response = await client.servers.deployments.streamByNamespace('id', { namespace: 'namespace',});console.log(response);
import Smithery from '@smithery/api';const client = new Smithery({ apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted});const response = await client.servers.deployments.streamByNamespace('id', { namespace: 'namespace',});console.log(response);