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.health.check();
console.log(response.status);
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.health.check();
console.log(response.status);
Copy
Ask AI
{
"status": "<string>",
"timestamp": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.