Skip to main content
Glama
evalstate

Hugging Face MCP Server

by evalstate
ToolOption.tsx774 B
import { Checkbox } from './ui/checkbox'; interface ToolOptionProps { id: string; label: string; description: string; isEnabled: boolean; onToggle: (checked: boolean) => void; } export function ToolOption({ id, label, description, isEnabled, onToggle }: ToolOptionProps) { return ( <div> <div className="items-top flex space-x-2"> <Checkbox id={id} checked={isEnabled} onCheckedChange={(checked) => onToggle(checked === true)} /> <div className="grid gap-1.5 leading-none"> <label htmlFor={id} className="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70" > {label} </label> <p className="text-sm text-muted-foreground">{description}</p> </div> </div> </div> ); }

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/evalstate/hf-mcp-server'

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