Download the MCPB bundle for the latest successful stdio release.
GET
/
servers
/
{qualifiedName}
/
download
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.download('qualifiedName');
console.log(response);
const content = await response.blob();
console.log(content);
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.download('qualifiedName');
console.log(response);
const content = await response.blob();
console.log(content);
"<string>"
Assistant
Responses are generated using AI and may contain mistakes.