fix: update dead-link #35
Merged
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.
Greptile Overview
Updated On: 2025-10-20 11:46:01 UTC
Greptile Summary
This PR fixes a broken documentation link in the MCP (Model Context Protocol) feature documentation. The link originally pointed to a deprecated installation guide at
documentation/getting-started/installationand now correctly points to the CLI v2 getting started guide atdocumentation/cli-v2/getting-started. This aligns with the repository's current documentation structure where CLI v2 documentation has replaced the older getting-started/installation path. The change also adds a trailing newline to maintain proper file formatting. This is a straightforward documentation maintenance fix with no functional impact on the codebase.Changed Files
Confidence Score: 5/5
This PR is safe to merge. It only updates a documentation link to point to the correct current path and adds proper file formatting. No code logic, API contracts, or functionality is affected. The change improves user experience by ensuring documentation links work correctly.
Sequence Diagram
sequenceDiagram participant User participant LLM as "LLM Provider<br/>(OpenAI/Gemini/Anthropic)" participant MCP as "MCP Server" participant Client as "Helix Client" participant DB as "HelixDB Instance" User->>MCP: "Initialize MCPServer(name, client)" MCP->>MCP: "Configure ToolConfig & Embedder" User->>MCP: "mcp.run()" MCP-->>User: "Server running on http://localhost:8000/mcp/" User->>LLM: "Initialize Provider (OpenAI/Gemini/Anthropic)" User->>LLM: "llm.enable_mcps('helix-mcp')" LLM->>MCP: "Connect to MCP endpoint" MCP-->>LLM: "Available tools (init, next, search_vector, etc.)" User->>LLM: "Send query/prompt" LLM->>MCP: "Call MCP tool (e.g., search_vector)" MCP->>Client: "Execute HQL query" Client->>DB: "Query HelixDB" DB-->>Client: "Return results" Client-->>MCP: "Query results" MCP-->>LLM: "Tool response" LLM-->>User: "Final response with data"