Behind the Craft

Full Tutorial: Connect Claude Code to Google, Slack, and Reddit in 40 Min (Skills + MCPs)

Mar 1, 2026
Listen Now

Summary

The episode demos how to connect Claude Code (Cloud Code) to workplace apps—Google Workspace, Linear, Slack, and Reddit—so you can run common PM tasks from the terminal without opening each app. Carl walks through concrete workflows: prepping meetings via Google MCPs, turning PRDs into Linear tickets, posting Slack updates, monitoring subreddits, and a daily-standup command that aggregates data from multiple tools. He explains folder/OS organization for reusable Claude Code workflows and shows how to promote file-based scripts into skills/commands. The episode also introduces a "consult-the-council" multi-model skill that queries several LLMs (ChatGPT, Gemini, Grok) to improve spec quality by aggregating diverse model feedback.

Key Takeaways

  • 1Connecting Claude Code to apps centralizes work in the terminal and reduces context switching.
  • 2MCPs (Model Connector Plugins) provide reliable first-try access to APIs and local data.
  • 3Turn repeatable file-based workflows into skills/commands for one-step automation.
  • 4Organize a Claude Code OS folder structure to personalize and scale your assistant.
  • 5Consult-the-council multi-model querying strengthens specs by aggregating diverse LLM feedback.

Notable Quotes

"I can just literally type 'consult the council' and then and just hit enter... it just literally hits the APIs for ChatGPT, for Gemini, for Grok."

"What the Google MCP can do is it can look at your calendar, it can look at your local space, see what note files we might have, it can look at our Google Drive to figure out which Google docs we have that are associated with these meetings and they can put all of that together."

"With MCPs it has all of that documentation and exactly what's available right there... so it basically gets it right on the first try."

"I find Cloud Code to be the biggest improvement to my workflow that I've ever had and so yeah... once you start getting the hang of it, it's so obviously awesome that people adopt it."

Episode questions

How does Claude/Cloud Code prepare you for meetings using Google Workspace?

The Google MCP reads your calendar, finds associated Google Docs and local notes, compares against agendas, suggests additions, and can update those docs automatically — saving manual prep time. (Demo described at preparing for daily meetings.)

When is an MCP harder or easier to set up?

Google Workspace MCP is described as more difficult due to enterprise cloud setup steps, while Linear's MCP is surprisingly easy (one command); Slack varies based on official rollout and company permissions. The difficulty spectrum was explicitly noted and demonstrated.

What is the benefit of turning file-based workflows into skills/commands?

Start in files to iterate; once stable, convert to skills so Claude can run them as commands (reusable, point to tools), making recurring multi-step workflows one-command operations without manual repetition.

How does 'consult the council' improve spec quality?

It programmatically queries multiple LLMs (ChatGPT, Gemini, Grok) via APIs, aggregates their feedback, and surfaces model-specific issues — catching blind spots and producing stronger specs at low per-run cost.