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
FunctionRunnerDisabledWhilePaused.tsx•602 B
import { DeploymentInfoContext } from "@common/lib/deploymentContext";
import Link from "next/link";
import { useContext } from "react";
export function FunctionRunnerDisabledWhilePaused() {
const { deploymentsURI } = useContext(DeploymentInfoContext);
return (
<>
The function runner is not available while the deployment is paused. To
resume your deployment, go to{" "}
<Link
passHref
href={`${deploymentsURI}/settings/pause-deployment`}
className="text-content-link underline hover:underline"
>
settings.
</Link>
</>
);
}