docs: add Connect AI Tools setup with MCP#84
Open
AllenAJ wants to merge 1 commit into
Open
Conversation
Add a dedicated API setup page for connecting Claude Code and Cursor via MCP, including Request Network Mintlify MCP and llms endpoints, then wire it into nav. Made-with: Cursor
Greptile SummaryThis PR adds a new Key points:
Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer / AI Tool
participant CLI as Claude Code CLI
participant Cursor as Cursor IDE
participant MCP as requestnetwork.mintlify.app/mcp
participant Docs as Request Network Docs
Note over Dev,Docs: Claude Code setup
Dev->>CLI: claude mcp add --transport http request-network-docs <url>
CLI-->>Dev: Server registered
Dev->>CLI: claude mcp list
CLI-->>Dev: request-network-docs ✓
Note over Dev,Docs: Cursor setup
Dev->>Cursor: Add MCP server (name, transport HTTP, URL)
Cursor-->>Dev: Server saved
Note over Dev,Docs: Runtime doc query
Dev->>CLI: Ask docs-grounded question
CLI->>MCP: Query docs via MCP protocol
MCP->>Docs: Fetch latest content
Docs-->>MCP: Documentation response
MCP-->>CLI: Structured answer
CLI-->>Dev: Response grounded in live docs
Note over Dev,Docs: Script / pipeline (no MCP client)
Dev->>Docs: GET /llms.txt or /llms-full.txt
Docs-->>Dev: Sitemap index or full Markdown
Reviews (1): Last reviewed commit: "docs: add Connect AI Tools setup page" | Re-trigger Greptile |
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.
Summary
api-setup/connect-ai-toolsllms.txt/llms-full.txtlinksdocs.jsonWhy
Developers increasingly use AI coding tools. This page makes docs grounding setup explicit and copy-paste ready.
Test plan
Made with Cursor