Skip to main content
Glama

Office MCP Server

by walkingzzzy
Button.tsx569 B
import './Button.css'; interface ButtonProps { children: React.ReactNode; onClick?: () => void; variant?: 'primary' | 'secondary' | 'danger'; disabled?: boolean; fullWidth?: boolean; } /** * 按钮组件 */ function Button({ children, onClick, variant = 'primary', disabled = false, fullWidth = false, }: ButtonProps) { const className = `btn btn-${variant} ${fullWidth ? 'btn-fullwidth' : ''}`; return ( <button className={className} onClick={onClick} disabled={disabled}> {children} </button> ); } export default Button;

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/walkingzzzy/office-mcp'

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