We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
composer-props.ts•458 B
import { Asset } from "@/api/openapi-schema";
export type ContentComposerProps = {
className?: string;
disabled?: boolean;
resetKey?: string;
initialValue?: string;
// NOTE: This is not for making the editor controllable but for optimistic
// mutation/revalidation of disabled editors. Use with care!
value?: string;
placeholder?: string;
onChange?: (value: string, isEmpty: boolean) => void;
onAssetUpload?: (asset: Asset) => void;
};