import Smithery from '@smithery/api';const client = new Smithery({ apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted});// Automatically fetches more pages as needed.for await (const reviewItem of client.skills.reviews.list('slug', { namespace: 'namespace' })) { console.log(reviewItem.id);}
import Smithery from '@smithery/api';const client = new Smithery({ apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted});// Automatically fetches more pages as needed.for await (const reviewItem of client.skills.reviews.list('slug', { namespace: 'namespace' })) { console.log(reviewItem.id);}