GET/api/supporting
Vendors that support every listed standard, optionally at a minimum role
- hasOne to five standard ids, comma separated; add :role for a minimum role (ids and roles at /api/standards)
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
curl -s "https://standards.fru.dev/api/supporting?has=mcp:server&limit=3"Sample response
{
"has": [
{
"standard": "mcp",
"name": "Model Context Protocol",
"min_role": "Server"
}
],
"items": [
{
"slug": "aws",
"name": "AWS",
"domain": "aws.amazon.com",
"category": "Cloud",
"supported": 6,
"url": "https://standards.fru.dev/vendors/aws",
"registry": "https://companies.fru.dev/companies/aws",
"evidence": [
{
"standard": "mcp",
"name": "Model Context Protocol",
"state": "active",
"level": "Server",
"sources": [
"Vendor documentation"
],
"adopter_list": false,
"unverified": false,
"since": "2026-09-24"
}
]
},
{
"slug": "google-cloud",
"name": "Google Cloud",
"domain": "cloud.google.com",
"category": "Cloud",
"supported": 6,
"url": "https://standards.fru.dev/vendors/google-cloud",
"registry": "https://companies.fru.dev/companies/google-cloud",
"evidence": [
{
"standard": "mcp",
"name": "Model Context Protocol",
"state": "active",
"level": "Server",
"sources": [
"Vendor documentation"
],
"adopter_list": false,
"unverified": false,
"since": "2026-09-24"
}
]
}
],
"total": 17,
"limit": 3,
"offset": 0,
"next": "/api/supporting?has=mcp%3Aserver&limit=3&offset=3",
"updated": "2026-09-24 23:01:01"
}