Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 20 additions & 11 deletions documentation/blog/2025-11-26-mcp-for-devs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,25 @@ Here's a real example from our team:

> Slack thread. Real developers in realtime.
>
> Dev 1: I think there's a bug with xyz
> Dev 2: Let me check... yep, I think you're right.
> Dev 3: `@goose` is there a bug here?
> goose: Yep. It's in these lines...[code snippet]
> Dev 3: Okay `@goose`, open an issue with the details. What solutions would you suggest?
> goose: Here are 3. [code snippets with rationale]
> Dev 1: I like Option 1
> Dev 2: me too
> Dev 3: `@goose`, implement Option 1
> goose: Done. Here's the PR.
> **Dev 1:** I think there's a bug with xyz
>
> **Dev 2:** Let me check... yep, I think you're right.
>
> **Dev 3:** `@goose` is there a bug here?
>
> **goose:** Yep. It's in these lines...[code snippet]
>
> **Dev 3:** Okay `@goose`, open an issue with the details. What solutions would you suggest?
>
> **goose:** Here are 3 suggestions: [code snippets with rationale]
>
> **Dev 1:** I like Option 1
>
> **Dev 2:** me too
>
> **Dev 3:** `@goose`, implement Option 1
>
> **goose:** Done. Here's the PR.

All of that happened *in Slack*. No one opened a browser or a terminal. No one context switched. Issue tracking, triaging, discussing fixes, implementing code in one thread in a 5-minute span.

Expand Down Expand Up @@ -100,7 +109,7 @@ This is probably my favorite dev MCP. It's a huge time saver for new projects, c

The [Chrome DevTools MCP](/docs/mcp/chrome-devtools-mcp) is a must-have for frontend devs. You're building a new form/widget/page/whatever. Instead of opening your browser, typing stuff in, and clicking around, you just tell your agent:

> "Test my login form on localhost:3000. Try valid and invalid logins. Let me know what happens. Run in headless mode"
> "Test my login form on localhost:3000. Try valid and invalid logins. Let me know what happens."

Chrome opens, test runs, screenshots captured, network traffic logged, console errors noted. All done by the agent.

Expand Down
Loading