File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,7 @@ sidebar_label: Aiven MCP server
66import Tabs from '@theme/Tabs ';
77import TabItem from '@theme/TabItem ';
88import CodeBlock from '@theme/CodeBlock ';
9-
10- <!-- vale off -->
11- {/* Set ` mcpUrl ` to the MCP server URL; the samples below use this value. * /}
12- export const mcpUrl = "https://mcp.aiven.live/mcp ";
13- export const cursorDeepLink = ` cursor://anysphere.cursor-deeplink/mcp/install?name=aiven-mcp&config=${typeof btoa !== "undefined" ? btoa(JSON.stringify({url: mcpUrl})) : ""} ` ;
14- <!-- vale on -->
9+ import {cursorDeepLink, mcpUrl} from '@site/src /components/mcpAivenLiveConstants';
1510
1611Use the Aiven Model Context Protocol (MCP) server to create and manage Aiven services from
1712AI assistants, such as Cursor and Claude Code.
Original file line number Diff line number Diff line change 1+ /**
2+ * MCP server URL and Cursor install deep link for `docs/tools/mcp.md`.
3+ * Change `mcpUrl` here to update every sample on that page.
4+ */
5+ export const mcpUrl = 'https://mcp.aiven.live/mcp' ;
6+
7+ export const cursorDeepLink = `cursor://anysphere.cursor-deeplink/mcp/install?name=aiven-mcp&config=${
8+ typeof btoa !== 'undefined' ? btoa ( JSON . stringify ( { url : mcpUrl } ) ) : ''
9+ } `;
You can’t perform that action at this time.
0 commit comments