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
import React from "react";
import { AIButton } from "../AIButton/AIButton";
import { useKapaWidget } from "../AIButton/kapaModule";
import Sparkle from "../AIButton/sparkle.svg";
export function ConvexAiChat() {
// Initialize Kapa widget.
useKapaWidget();
return (
<AIButton className="js-launch-kapa-ai h-11 order-1 mr-2 lg:order-2 lg:mr-0 lg:ml-2 shrink-0">
<div className="flex items-center gap-2 pl-2 pr-3">
<Sparkle className="w-5 h-5" />
Ask AI
</div>
</AIButton>
);
}