Midday / apps /website /src /components /mcp-zapier.tsx
Jules
Final deployment with all fixes and verified content
c09f67c
"use client";
import { ZapierMcpLogo } from "@midday/app-store/logos";
import { Button } from "@midday/ui/button";
import { Icons } from "@midday/ui/icons";
import { Input } from "@midday/ui/input";
import Link from "next/link";
import { useMemo, useState } from "react";
import { highlight } from "sugar-high";
function CodeBlock({ code }: { code: string }) {
const [copied, setCopied] = useState(false);
const handleCopy = async () => {
try {
await navigator.clipboard.writeText(code);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
} catch (err) {
console.error("Failed to copy:", err);
}
};
const codeHTML = highlight(code);
return (
<div className="relative group">
<div className="bg-[#fafafa] dark:bg-[#0c0c0c] border border-border rounded-none overflow-hidden">
<pre className="overflow-x-auto p-4 text-sm font-mono">
<code dangerouslySetInnerHTML={{ __html: codeHTML }} />
</pre>
</div>
<button
type="button"
onClick={handleCopy}
className="absolute top-3 right-3 p-1.5 bg-background/80 backdrop-blur-sm border border-border text-muted-foreground hover:text-foreground hover:bg-background transition-colors opacity-0 group-hover:opacity-100 rounded-none"
aria-label="Copy code"
>
{copied ? (
<Icons.Check size={14} className="text-foreground" />
) : (
<Icons.Copy size={14} />
)}
</button>
</div>
);
}
const automationExamples = [
"Email me a weekly profit report every Monday",
"Send a Slack message when an invoice is overdue",
"Add new customers to my Google Sheet",
"Create a Notion page for each new project",
];
export function MCPZapier() {
const [apiKey, setApiKey] = useState("");
const connectionConfig = useMemo(() => {
const key = apiKey || "YOUR_API_KEY";
return `Server URL: https://api.midday.ai/mcp
Transport: Streamable HTTP
OAuth: No
Bearer Token: ${key}`;
}, [apiKey]);
return (
<div className="min-h-screen bg-background">
{/* Hero Section */}
<div className="bg-background">
<div className="pt-32 pb-16 sm:pt-40 sm:pb-20 md:pt-48 px-4 sm:px-6">
<div className="max-w-2xl mx-auto">
{/* Back Link */}
<Link
href="/mcp"
className="inline-flex items-center gap-2 text-muted-foreground hover:text-foreground transition-colors mb-8 font-sans text-sm"
>
<Icons.ArrowBack size={16} />
All clients
</Link>
{/* Logo and Title */}
<div className="flex items-center gap-4 mb-6">
<div className="w-14 h-14 [&>svg]:w-full [&>svg]:h-full">
<ZapierMcpLogo />
</div>
<div>
<p className="font-sans text-xs text-muted-foreground uppercase tracking-wider">
MCP Server
</p>
<h1 className="font-serif text-3xl sm:text-4xl text-foreground">
Zapier
</h1>
</div>
</div>
{/* Description */}
<div className="space-y-4 mb-8">
<h2 className="font-serif text-xl sm:text-2xl text-foreground">
Automate your business workflows
</h2>
<p className="font-sans text-base text-muted-foreground leading-relaxed">
Connect Midday to 7,000+ apps through Zapier. Build automated
workflows for reports, alerts, and data syncing—no code
required.
</p>
</div>
{/* Use Cases */}
<div className="space-y-3 mb-8 p-4 bg-secondary/50 border border-border">
<p className="font-sans text-sm font-medium text-foreground">
What you can automate
</p>
<ul className="space-y-2">
{automationExamples.map((example) => (
<li
key={example}
className="font-sans text-sm text-muted-foreground flex items-start gap-2"
>
<span className="text-foreground"></span>
{example}
</li>
))}
</ul>
</div>
{/* Divider */}
<div className="h-px w-full border-t border-border mb-8" />
{/* API Key Input */}
<div className="space-y-4 mb-8">
<div className="space-y-2">
<label
htmlFor="api-key"
className="font-sans text-sm text-foreground"
>
Your Midday API key
</label>
<Input
id="api-key"
type="password"
placeholder="mid_..."
value={apiKey}
onChange={(e) => setApiKey(e.target.value)}
className="font-mono text-sm"
/>
<p className="font-sans text-xs text-muted-foreground">
Don't have an API key?{" "}
<Link
href="https://app.midday.ai/settings/developer"
className="underline hover:text-foreground"
>
Create one in Settings → Developer
</Link>
</p>
</div>
</div>
{/* Connection Details */}
<div className="space-y-4 mb-8">
<h3 className="font-sans text-sm font-medium text-foreground">
Connection details
</h3>
<p className="font-sans text-sm text-muted-foreground">
Use these settings when adding the MCP connection in Zapier:
</p>
<CodeBlock code={connectionConfig} />
</div>
{/* Steps */}
<div className="mt-12 space-y-4">
<h3 className="font-sans text-sm font-medium text-foreground">
Setup steps
</h3>
<ol className="space-y-4">
<li className="flex items-start gap-3">
<span className="flex-shrink-0 w-6 h-6 bg-secondary border border-border flex items-center justify-center font-mono text-xs text-muted-foreground">
1
</span>
<div className="pt-0.5">
<span className="font-sans text-sm text-foreground font-medium">
Open Zapier MCP Client
</span>
<p className="font-sans text-sm text-muted-foreground mt-1">
Go to{" "}
<a
href="https://zapier.com/apps"
target="_blank"
rel="noopener noreferrer"
className="underline hover:text-foreground"
>
Zapier Apps
</a>{" "}
→ Search for "MCP Client" → Click "Add connection"
</p>
</div>
</li>
<li className="flex items-start gap-3">
<span className="flex-shrink-0 w-6 h-6 bg-secondary border border-border flex items-center justify-center font-mono text-xs text-muted-foreground">
2
</span>
<div className="pt-0.5">
<span className="font-sans text-sm text-foreground font-medium">
Configure the connection
</span>
<p className="font-sans text-sm text-muted-foreground mt-1">
Enter the Server URL:{" "}
<code className="font-mono bg-secondary px-1">
https://api.midday.ai/mcp
</code>
</p>
<p className="font-sans text-sm text-muted-foreground mt-1">
Select "Streamable HTTP" as transport, set OAuth to "No"
</p>
</div>
</li>
<li className="flex items-start gap-3">
<span className="flex-shrink-0 w-6 h-6 bg-secondary border border-border flex items-center justify-center font-mono text-xs text-muted-foreground">
3
</span>
<div className="pt-0.5">
<span className="font-sans text-sm text-foreground font-medium">
Add your API key
</span>
<p className="font-sans text-sm text-muted-foreground mt-1">
Get an API key from{" "}
<Link
href="https://app.midday.ai/settings/developer"
className="underline hover:text-foreground"
>
Settings → Developer
</Link>{" "}
and enter it as the Bearer Token
</p>
</div>
</li>
<li className="flex items-start gap-3">
<span className="flex-shrink-0 w-6 h-6 bg-secondary border border-border flex items-center justify-center font-mono text-xs text-muted-foreground">
4
</span>
<div className="pt-0.5">
<span className="font-sans text-sm text-foreground font-medium">
Create your first Zap
</span>
<p className="font-sans text-sm text-muted-foreground mt-1">
Use "MCP Client by Zapier" in your Zaps to access Midday's
tools for transactions, invoices, reports, and more
</p>
</div>
</li>
</ol>
</div>
{/* CTA */}
<div className="mt-12 p-6 bg-secondary/50 border border-border">
<h3 className="font-sans text-sm font-medium text-foreground mb-2">
New to Zapier?
</h3>
<p className="font-sans text-sm text-muted-foreground mb-4">
Zapier connects apps and automates workflows. Start with their
free plan to try it out.
</p>
<Button asChild variant="outline" className="h-9 text-sm">
<a
href="https://zapier.com/sign-up"
target="_blank"
rel="noopener noreferrer"
>
Create free Zapier account
</a>
</Button>
</div>
</div>
</div>
</div>
</div>
);
}