Skip to main content
GET
/
servers
/
{qualifiedName}
/
releases
/
{id}
/
stream
JavaScript
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.releases.stream('id', { qualifiedName: 'qualifiedName' });

console.log(response);
"<string>"

Documentation Index

Fetch the complete documentation index at: https://smithery.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Smithery API key as Bearer token

Path Parameters

qualifiedName
string
required

The server's qualified name (e.g. 'namespace/server' or 'namespace' for namespace-only servers). Use %2F to encode the slash.

id
string
required

Response

SSE stream of release events

SSE events: init (with buffered logs), log, status, complete