Skip to main content
Glama
reflagcom

Bucket Feature Flags MCP Server

Official
by reflagcom
Button.tsx408 B
import { FunctionComponent, h } from "preact"; export type ButtonProps = h.JSX.HTMLAttributes<HTMLButtonElement> & { variant?: "primary" | "secondary"; }; export const Button: FunctionComponent<ButtonProps> = ({ variant = "primary", children, ...rest }) => { const classes = ["button", variant].join(" "); return ( <button class={classes} {...rest}> {children} </button> ); };

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