Claude is the brain
Decides, writes, judges, plans. The thing reading and reasoning about your work.
A connector and recipe book — the design tools (Stitch, Figma, v0), the editor plugins (Cursor, JetBrains), the workspace MCP servers (Drive, Gmail, Calendar, Slack, GitHub, YouTube), the automation hubs (GitHub Actions, n8n, Zapier), and self-hosted exposure via Cloudflare Tunnel.
Claude is unusually strong at three jobs: orchestration (deciding what should happen next), translation (turning one format into another), and judgment (saying whether a result is good). Other tools are better at single specialized jobs. The most powerful setups put Claude in the middle and let it call out to specialists.
Decides, writes, judges, plans. The thing reading and reasoning about your work.
Drive reads files. Gmail sends mail. Stitch designs. v0 codes components. Each does one thing well.
The protocol that lets Claude call those tools. Set it up once, reuse everywhere.
Google Labs' AI design tool. Type a description ("calm editorial homepage for a hot springs spa, three-screen flow"), get a polished multi-screen UI you can drop straight into Figma. Strong at exploring direction; weak at production code on its own.
Stitch generates the look. Claude codes it. Stitch is fastest at "what should this even look like?" Claude is fastest at "now build it production-quality." Together you collapse a week of design + dev into an afternoon.
The industry-standard design canvas. Two ways to integrate: the simple one (export PNG, paste into Claude) and the full one (a Figma MCP server that lets Claude read your file directly).
An MCP server that gives Claude direct access to your Figma files. Claude can read frames, components, and styles, and produce code that respects them.
claude mcp add figma and follow prompts; paste the token when asked.Generates polished React + Tailwind + shadcn/ui components from a prompt. Excellent for component-shaped work; produces code that fits modern React stacks out of the box.
v0 produces the component, Claude weaves it in. v0 makes a self-contained piece. Claude adapts it to your tokens, your file structure, and the rest of the page.
All three speak Claude. Cursor is Claude-native. VS Code and JetBrains add Claude through the official plugin or extensions like Claude Code's IDE companion.
Cursor ships with Claude as a first-class option. Pick Claude in the model picker and it works the same way — chat panel + inline edits + repo context — with Cursor's own UX flourishes.
Connect Claude to the tools you already use for work. Each server is a small program that runs locally (or on a remote host) and exposes a set of tools to any MCP client. Claude Code, Claude desktop, and any custom app can use them.
| Server | What Claude can do | Auth |
|---|---|---|
| Drive | Search files, read content, get metadata, copy, create, manage permissions | Google OAuth |
| Gmail | Search threads, read messages, draft replies, label, manage drafts | Google OAuth |
| Calendar | List events, create/update/delete events, suggest meeting times, RSVP | Google OAuth |
| Slack | Read channels, post messages, search history, manage channels | Slack OAuth |
| GitHub | Read repos, open PRs, create issues, comment, manage workflows | GitHub PAT or App |
| YouTube | Search videos, fetch transcripts, channel stats, video details | YouTube Data API key |
| Filesystem | Read/write files in a chosen directory tree | Local only |
| Postgres / SQLite | Query databases, return rows, schema introspection | Connection string |
claude mcp add drive (or follow the README of the server you picked).A grab-bag of servers that turn Claude Code into a more capable shop. Add only what you need; each one expands the surface (and risk) Claude can act on.
If you have an internal API, wrapping it as MCP gives you instant Claude support. The official SDKs (Python, TypeScript, Go) handle the protocol; you just describe your tools and implement them.
claude mcp add <path>.Run Claude as part of your CI/CD pipeline. Code review on every PR, security scans, automated documentation updates, scheduled cleanups.
ANTHROPIC_API_KEY as a repo secret..github/workflows/claude-review.yml.pull_request; check out the PR; install the Anthropic SDK; run a small script that reads the diff and posts comments.name: Claude Review
on: [pull_request]
jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip install anthropic
- run: python .github/scripts/review.py
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Workflow automation hubs. Both have Claude/Anthropic nodes built in. n8n is open source and self-hostable. Zapier is hosted-only but has the broadest catalog of integrations.
Three places to schedule recurring Claude work. Pick by where the state lives.
/scheduleBuilt-in. Schedule a remote agent on a cron — "run this Monday at 9am" or "every two weeks open a flag-cleanup PR." Anthropic runs the worker.
Run a Python or shell script that hits the API. Best when the data lives on your machine. Free.
If the trigger is in a SaaS tool (a new row, a webhook, a PR open), schedule there. State stays in the platform.
/schedule/schedule./schedule list, /schedule run <id>, /schedule delete <id>.Expose a Claude-powered service from a machine in your house — your Mac mini, a Beelink, a wall-mounted PCG35 — to the public internet without opening a firewall port. Cloudflare handles TLS, the public DNS, and the front door.
claude.yourdomain.com.cloudflared on the host machine. Cloudflare's docs have one-liners for every OS.cloudflared tunnel login. Pick the Cloudflare zone (the domain you'll use).cloudflared tunnel create <name>. It writes a credentials JSON to your config dir.cloudflared tunnel route dns <name> claude.yourdomain.com. Cloudflare writes the DNS for you.cloudflared service install on most platforms.Concrete examples of stitching multiple tools together. Each is small enough to build in an afternoon.
Goal: a designed landing page, deployed to a real URL, in under an hour.
Goal: "summarize last week's project files and email the team a digest, every Friday at 4pm."
/schedule: every Friday 4pm.Goal: every PR opens, Claude reviews it, posts the summary in #pull-requests.
ANTHROPIC_API_KEY as a repo secret.pull_request that runs a small Python script: grab the diff, send to Claude, post the response to Slack./no-review for cases you want to skip.