quality
Evaluate service quality with weekly A-F grades for 70 tested services. Find reliable services quickly.
Instructions
Get service quality grades - we test 70 services weekly and grade them A-F
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:20-20 (schema)Tool definition/registration for 'quality': it takes no input parameters and returns service quality grades (A-F) for 70 services tested weekly.
{ name: 'quality', description: 'Get service quality grades - we test 70 services weekly and grade them A-F', inputSchema: { type: 'object', properties: {} } }, - server.js:37-37 (registration)Maps the 'quality' tool name to the '/quality' free API endpoint.
const freeEndpoints = { stats: '/stats', quality: '/quality', protocols: '/protocols', prices: '/prices', trends: '/trends' }; - server.js:39-42 (handler)Handler logic for the 'quality' tool (and other free tools): fetches from BASE_URL + '/quality' and returns the JSON response as text.
if (freeEndpoints[name]) { const resp = await fetch(BASE_URL + freeEndpoints[name]); const data = await resp.json(); return { content: [{ type: 'text', text: JSON.stringify(data, null, 2) }] };