@goosebotgh
Problem
The :::tip TLDR section's CLI tab in documentation/docs/mcp/neighborhood-mcp.md has a full 7-step goose configure walkthrough with terminal output. That's way too long for a TLDR — it should be a quick one-liner like the Vercel MCP page uses.
What to change
File: documentation/docs/mcp/neighborhood-mcp.md
Replace the entire CLI <TabItem> inside the :::tip TLDR block (the 7-step walkthrough between <TabItem value="cli" label="goose CLI"> and its closing </TabItem>, roughly lines 18-120) with:
<TabItem value="cli" label="goose CLI">
```sh
npx mcp-remote https://connect.squareup.com/v2/mcp/neighborhood
```
</TabItem>
This matches the pattern used in the Vercel MCP docs TLDR section.
What to leave alone
- The Desktop tab in the TLDR — it's fine
- The entire
## Configuration section below — it already uses <CLIExtensionInstructions> correctly
- Everything else in the file (examples, imports, etc.)