From c858c49fd3d63b9872e9c876dab7881fbc8ffc22 Mon Sep 17 00:00:00 2001 From: manuka rahul <96047526+rahulpinto19@users.noreply.github.com> Date: Fri, 14 Nov 2025 11:16:47 +0530 Subject: [PATCH] chore: fix links (#1914) Fixed broken links. --------- Co-authored-by: Twisha Bansal <58483338+twishabansal@users.noreply.github.com> --- docs/en/how-to/connect-ide/looker_mcp.md | 2 +- docs/en/resources/tools/mindsdb/mindsdb-execute-sql.md | 4 ++-- docs/en/resources/tools/mindsdb/mindsdb-sql.md | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/en/how-to/connect-ide/looker_mcp.md b/docs/en/how-to/connect-ide/looker_mcp.md index 19ef7b8201..f1698c6e46 100644 --- a/docs/en/how-to/connect-ide/looker_mcp.md +++ b/docs/en/how-to/connect-ide/looker_mcp.md @@ -287,7 +287,7 @@ Your AI tool is now connected to Looker using MCP. Try asking your AI assistant to list models, explores, dimensions, and measures. Run a query, retrieve the SQL for a query, and run a saved Look. -The full tool list is available in the [Prebuilt Tools Reference](../../reference/prebuilt-tools/#looker). +The full tool list is available in the [Prebuilt Tools Reference](../../reference/prebuilt-tools.md/#looker). The following tools are available to the LLM: diff --git a/docs/en/resources/tools/mindsdb/mindsdb-execute-sql.md b/docs/en/resources/tools/mindsdb/mindsdb-execute-sql.md index 26ac287fb4..189b9233e0 100644 --- a/docs/en/resources/tools/mindsdb/mindsdb-execute-sql.md +++ b/docs/en/resources/tools/mindsdb/mindsdb-execute-sql.md @@ -14,7 +14,7 @@ aliases: A `mindsdb-execute-sql` tool executes a SQL statement against a MindsDB federated database. It's compatible with any of the following sources: -- [mindsdb](../sources/mindsdb.md) +- [mindsdb](../../sources/mindsdb.md) `mindsdb-execute-sql` takes one input parameter `sql` and runs the SQL statement against the `source`. This tool enables you to: @@ -123,4 +123,4 @@ tools: |-------------|:------------------------------------------:|:------------:|--------------------------------------------------------------------------------------------------| | kind | string | true | Must be "mindsdb-execute-sql". | | source | string | true | Name of the source the SQL should execute on. | -| description | string | true | Description of the tool that is passed to the LLM. | \ No newline at end of file +| description | string | true | Description of the tool that is passed to the LLM. | diff --git a/docs/en/resources/tools/mindsdb/mindsdb-sql.md b/docs/en/resources/tools/mindsdb/mindsdb-sql.md index f1df3d1271..d615d2f77c 100644 --- a/docs/en/resources/tools/mindsdb/mindsdb-sql.md +++ b/docs/en/resources/tools/mindsdb/mindsdb-sql.md @@ -14,7 +14,7 @@ aliases: A `mindsdb-sql` tool executes a pre-defined SQL statement against a MindsDB federated database. It's compatible with any of the following sources: -- [mindsdb](../sources/mindsdb.md) +- [mindsdb](../../sources/mindsdb.md) The specified SQL statement is executed as a [prepared statement][mysql-prepare], and expects parameters in the SQL query to be in the form of placeholders `?`. @@ -135,7 +135,7 @@ tools: > including identifiers, column names, and table names. **This makes it more > vulnerable to SQL injections**. Using basic parameters only (see above) is > recommended for performance and safety reasons. For more details, please check -> [templateParameters](_index#template-parameters). +> [templateParameters](../#template-parameters). ```yaml tools: @@ -164,5 +164,5 @@ tools: | source | string | true | Name of the source the SQL should execute on. | | description | string | true | Description of the tool that is passed to the LLM. | | statement | string | true | SQL statement to execute on. | -| parameters | [parameters](_index#specifying-parameters) | false | List of [parameters](_index#specifying-parameters) that will be inserted into the SQL statement. | -| templateParameters | [templateParameters](_index#template-parameters) | false | List of [templateParameters](_index#template-parameters) that will be inserted into the SQL statement before executing prepared statement. | \ No newline at end of file +| parameters | [parameters](../#specifying-parameters) | false | List of [parameters](../#specifying-parameters) that will be inserted into the SQL statement. | +| templateParameters | [templateParameters](../#template-parameters) | false | List of [templateParameters](../#template-parameters) that will be inserted into the SQL statement before executing prepared statement. |