Skip to main content
Glama
reflagcom

Bucket Feature Flags MCP Server

Official
by reflagcom
RadialProgress.tsx729 B
import { FunctionComponent, h } from "preact"; export const RadialProgress: FunctionComponent<{ diameter: number; progress: number; }> = ({ diameter, progress }) => { const stroke = 2; const radius = diameter / 2 - stroke; const circumference = 2 * Math.PI * radius; const filled = circumference * progress; return ( <svg class="radial-progress" height={diameter} width={diameter}> <circle cx={radius + stroke} cy={radius + stroke} fill="transparent" r={radius} stroke-dasharray={circumference} stroke-dashoffset={filled} stroke-width={stroke} transform={`rotate(-90) translate(-${radius * 2 + stroke * 2} 0)`} /> </svg> ); };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/reflagcom/bucket-javascript-sdk'

If you have feedback or need assistance with the MCP directory API, please join our Discord server