docs(sorare): no-code primary flow (claude.ai connectors, ChatGPT UI, Copilot palette) + chat bubble fix#218
Merged
Conversation
Three changes that came from a real user testing the guides on the
deployed website.
1. The Claude / ChatGPT / Copilot guides led with the code-level MCP
config (claude_desktop_config.json, settings.json), which buried
the fact that all three clients now have a no-code UI for adding
MCP connectors. Rewritten:
- Claude: lead with claude.ai/customize/connectors → Add custom
connector → paste URL + Bearer token → Connect. Demote the
desktop JSON config and Claude Code CLI to an <details> block
labelled 'Advanced'.
- ChatGPT: keep the Settings → Connectors UI as the primary path,
but switch the cloud URL to cloud.anythingmcp.com explicitly
(instead of 'your-anythingmcp-host'), since the no-install
callout already pushes everyone to the managed cloud. Demote
self-host to <details>.
- Copilot: lead with the VS Code Command Palette path ('MCP: Add
Server'), HTTP option, paste URL + Bearer token. Demote
settings.json JSON to <details>.
All three apply uniformly to en / de / it (9 files total).
2. The blue user bubble in the chat mockup rendered as illegible
text on the light-mode site because the website's MDX components
apply text-muted-foreground to descendant text and that wins over
the Tailwind text-white class. Fixed defensively in the three
announcement landings (en / de / it):
- Added Tailwind '!' important prefix to text-white / text-zinc-*
classes on the chat bubbles.
- Wrapped the bubble text content (including <strong> inlines) in
inline-style spans with color: #ffffff to bypass any future
CSS-precedence regressions.
3. Replaced the outdated 7-row tool tables in the three Claude
guides with the proper 18-tool grouped table (Identity, Cards,
Players, Market, GraphQL escape hatch) — matches the current
adapter state shipped in v0.1.25.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Three changes from a real user testing the deployed guides:
claude.ai/customize/connectorsfor Claude, ChatGPT Settings → Connectors, VS Code 'MCP: Add Server' palette for Copilot. JSON / CLI config moved into an 'Advanced'<details>block.!important prefix on text-white / text-zinc-* in the chat mockup + defensive inlinestyle={{color:'#ffffff'}}spans around the user-message text, since MDX'stext-muted-foregroundwould otherwise win on descendants.Affects 12 MDX files (4 per locale × 3 locales). Docs-only; no code, no Docker, no AnythingMCP deploy needed — website re-syncs on next build.