We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/activepieces/activepieces'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { FullLogo } from '@/components/ui/full-logo';
import { ChangePasswordForm } from '@/features/authentication/components/change-password';
const ChangePasswordPage = () => {
return (
<div className="mx-auto flex h-screen flex-col items-center justify-center gap-2">
<FullLogo />
<ChangePasswordForm />
</div>
);
};
export { ChangePasswordPage };