Skip to main content
Glama

Convex MCP server

Official
by get-convex
Combobox.stories.tsx997 B
import { Meta, StoryObj } from "@storybook/nextjs"; import { ComponentProps, useState } from "react"; import { Combobox } from "@ui/Combobox"; const meta = { component: Combobox, render: (args) => <Example {...args} />, } satisfies Meta<typeof Combobox>; export default meta; type Story = StoryObj<typeof meta>; function Example(args: Omit<ComponentProps<typeof Combobox>, "Option">) { const [selectedOption, setSelectedOption] = useState<string>("1"); return ( <Combobox {...args} options={[ { label: "Option 1", value: "1" }, { label: "Option 2", value: "2" }, { label: "Option 3", value: "3" }, { label: "Option 4", value: "4" }, { label: "Option 5", value: "5" }, { label: "Option 6", value: "6" }, { label: "Option 7", value: "7" }, ]} selectedOption={selectedOption} setSelectedOption={(opt: string | null) => opt && setSelectedOption(opt)} /> ); } export const Default: Story = {};

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/get-convex/convex-backend'

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