We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
syntax = "proto3";
package publicui.hydrate;
// Service for rendering HTML components server-side
service HydrateRenderer {
// Renders HTML with hydrated components
rpc renderHtml(RenderRequest) returns (RenderResponse);
}
// Request message containing HTML to render
message RenderRequest {
string html = 1;
string options_json = 2;
}
// Response message with rendered HTML and diagnostics
message RenderResponse {
string html = 1;
repeated string components = 2;
int32 hydratedCount = 3;
string diagnosticsJson = 4;
}