PRDCT-359: split the MCP section into Diátaxis pages and kill the Management duplicate - #1074
Draft
Iamfle4ka wants to merge 9 commits into
Draft
PRDCT-359: split the MCP section into Diátaxis pages and kill the Management duplicate#1074Iamfle4ka wants to merge 9 commits into
Iamfle4ka wants to merge 9 commits into
Conversation
Diátaxis split, page 1 of 4: the 564-line mixed page keeps only the explanation layer — what the server is, what an assistant can do, how hosting/OAuth/permissions work, dev-branch scoping — plus a section map and a Next chain. Setup, tool reference, and local execution move to their own pages. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Per-client setup (Claude, ChatGPT, Cursor, Windsurf, VS Code, Make, any other client) as synced tabs, plus the programmatic recipes (Messages API connector, OpenAI Agents SDK, LangChain, CrewAI, own client) behind an on-page note — same task, no separate developer page. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Tool catalogue by category plus the X-Allowed-Tools / X-Disallowed-Tools / X-Read-Only-Mode headers, filter order, read-only set, and examples. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Docker and uv recipes, required env vars, BigQuery credentials, and pointing a client at a localhost instance. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
The 18-line management/project/mcp-server stub duplicated the AI section and pushed users off to it; deleted with a redirect_from onto the hub. Nav now carries one MCP entry with the three sub-pages in reading order. The stub screenshot is not carried over: it showed a stale /sse Integration URL from a non-demo project. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
… claims From the fact-checker run against keboola/mcp-server: - self-hosted: remove the GOOGLE_APPLICATION_CREDENTIALS prerequisite and the BigQuery credential mount (the variable exists nowhere in the server, which routes BigQuery workspace queries through the Query Service since AJDA-2801), and stop showing ?storage_token=…&workspace_schema= in the localhost URL (config is no longer read from the query string). Both are inherited from the pre-split page; evidence recorded inline as VERIFY notes. - self-hosted: KBC_WORKSPACE_SCHEMA is only needed with a custom Storage token; restore the mcp_servers.json filename label. - tools: note that the offered tool set varies (semantic models, branch, read-only token). - hub: keep a #remote-server-setup anchor — the server README links to it; match the source on transports and permissions instead of overstating. - connect: Project Settings → MCP Server tab (the page has a flat tab strip, no Users & Settings level); lede no longer claims every route is a paste. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Live-verified against demo project 264 plus a locally run server: connect: - say how to find your stack (the connection.<stack> host in your browser) and that <YOUR_REGION> stands for the whole host, so 'paste the full URL' replaces 'replace the region token with a URL' - fix the in-platform path: avatar menu → Keboola MCP Server (or Project Settings → MCP Server tab); 'Users & Settings' is a URL slug, not a label - Claude: Customize → Connectors, + → Add custom connector, then Connect - Cursor: the button is 'Add Keboola MCP server to Cursor' - add a Claude Code tab (one-line claude mcp add), which the platform ships and the page lacked - Windsurf/VS Code/Make: current menus, live Windsurf doc link, Make's Keboola preset; drop the unsupported Copilot-plan requirement - make both Python snippets actually run (async main + credentials) and say what happens without them; note the hosted endpoints enforce OAuth - dev-branch scoping: say that most desktop clients can't set headers - prerequisites block; mcp-remote fallback points at the Claude tab self-hosted: - document Streamable HTTP mode (--transport streamable-http --host --port, and -p for Docker). Without it the page told readers to connect to localhost:8000 with no way to get a server listening there. - credentials go in env/CLI or X-Storage-Token / X-Workspace-Schema headers - KBC_STORAGE_API_URL: how to build it, and it's connection.*, not mcp.* - the Docker command's result is a stdio server: let the client run it - prerequisites; Cursor template placeholders must be edited after install Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…n demo 264 Replaces the placeholder note with a live capture (production branch, current /mcp Integration URL) and records what the live UI confirmed: the avatar menu carries both Project Settings and Keboola MCP Server, and the MCP tab has a client tab each for Claude.ai, Claude Desktop, Claude Code, ChatGPT, Cursor, Make, Windsurf and Other — so the Make tab does exist and the documented path is right. VERIFY note on that question dropped. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
What and why
/ai/mcp-server/was a 564-line frankenstein — explanation, per-client setup, tool reference, access-control headers, local execution and SDK recipes on one page — andmanagement/project/mcp-server/was an 18-line stub duplicating it in the nav, sending readers back to the AI section. One reader need, one page:/ai/mcp-server//ai/mcp-server/connect//ai/mcp-server/tools/X-Allowed-Tools/X-Disallowed-Tools/X-Read-Only-Mode, filter order, read-only set, examples/ai/mcp-server/self-hosted/uv, Streamable HTTP mode, pointing a client at localhostThe stub is deleted with
redirect_from, so/management/project/mcp-server/301s onto the hub and the nav carries one MCP entry with three children in reading order. Pages are split by Diátaxis type only — no "for developers" page; the SDK recipes are the same connect task behind an on-page note.Fixes found while doing it
Two dead facts inherited from the pre-split page (both verified against
keboola/mcp-server; evidence recorded inline asVERIFY(owner)comments so they can be challenged):GOOGLE_APPLICATION_CREDENTIALSfor BigQuery — the variable exists nowhere in the server, there is nogoogle-cloud/google-authdependency, and BigQuery workspace queries have gone through the Query Service since AJDA-2801 (2026-05-29). Readers were exporting and mounting a GCP service-account key for nothing. Removed.?storage_token=…&workspace_schema=…) — the server stopped reading config from the query string (KAB-1068) and--accept-secrets-in-urlhas since been removed. Reproduced live: the documented form returns "Storage API token is not provided." Replaced with env vars / CLI flags /X-Storage-Tokenheaders.And one blocker of my own making, caught by a live pass:
self-hostedtold readers to connect tolocalhost:8000without ever naming--transport streamable-http— the HTTP half of the page was unreachable from its own instructions. Documented, with the matching-pfor Docker.Live verification against the demo project also corrected the in-platform path (avatar menu → Keboola MCP Server; "Users & Settings" is a URL slug, not a UI label), Claude's Customize → Connectors flow, the Cursor button label, Windsurf/VS Code/Make menus, and made both Python snippets actually compile and carry credentials. Added a Claude Code tab — the platform ships a one-line
claude mcp addthat the page didn't have.The stub's screenshot is not carried over: it showed a stale
/sseIntegration URL from a non-demo project. A re-shoot note sits inconnect.mdx.keboola/mcp-server's README links tohelp.keboola.com/ai/mcp-server/#remote-server-setup, so the hub keeps an anchor-compatible section that routes onward. Alternative: a one-line PR against that README.Verification
npm run buildclean;node scripts/audit-phase2.mjs: MISSING IMAGES 0, no MCP-related findings (the 45 broken links and 147 total are the repo's pre-existing baseline).mcp-remoteandX-Branch-Idtodocs_query) all resolve into the new pages.fact-checker(againstkeboola/mcp-server): read-only tool table matchesTOOLS.md20/20; the PRDCT-580: merge dev MCP page into help MCP (unit 2) #1050 semantic-layer gap is closed; all five stack URLs and all five Cursor deeplinks verified.guide-tester: live pass on the real platform plus a locally run server.Open questions
VERIFY(Matyáš)— Project Settings tab set. Does a MAKE tab still exist there, and is avatar → Keboola MCP Server the path you want documented?🤖 Generated with Claude Code