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}
/
{server}
/
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.stream('id', {
namespace: 'namespace',
server: 'server',
});
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.stream('id', {
namespace: 'namespace',
server: 'server',
});
console.log(response);