### Add Custom SSE URL for Highlight AI MCP Source: https://gitmcp.io/drift-labs/drift-common/index Instructions for adding a custom SSE MCP server URL in Highlight AI. This involves navigating to the plugins section, selecting 'Custom Plugin', and entering the provided plugin name and SSE URL. ```plaintext Plugin Name: `drift-common Docs` SSE URL: `https://gitmcp.io/drift-labs/drift-common` ``` -------------------------------- ### Configure Claude Desktop for drift-common Docs MCP Source: https://gitmcp.io/drift-labs/drift-common/index Integrate the drift-common MCP server with Claude Desktop by modifying the 'claude_desktop_config.json' file. This enables Claude Desktop to connect to the specified MCP server URL using npx. ```json { "mcpServers": { "drift-common Docs": { "command": "npx", "args": [ "mcp-remote", "https://gitmcp.io/drift-labs/drift-common" ] } } } ``` -------------------------------- ### Configure Cursor for drift-common Docs MCP Source: https://gitmcp.io/drift-labs/drift-common/index Add the drift-common MCP server to your Cursor configuration by updating the '~/.cursor/mcp.json' file. This allows Cursor to access the documentation and features provided by the MCP server. ```json { "mcpServers": { "drift-common Docs": { "url": "https://gitmcp.io/drift-labs/drift-common" } } } ``` -------------------------------- ### Configure Windsurf for drift-common Docs MCP Source: https://gitmcp.io/drift-labs/drift-common/index Connect Windsurf to the drift-common MCP server by updating the '~/.codeium/windsurf/mcp_config.json' file with the provided server URL. ```json { "mcpServers": { "drift-common Docs": { "serverUrl": "https://gitmcp.io/drift-labs/drift-common" } } } ``` -------------------------------- ### Configure Cline for drift-common Docs MCP Source: https://gitmcp.io/drift-labs/drift-common/index Set up Cline to use the drift-common MCP server by modifying the 'cline_mcp_settings.json' file located in '~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/'. This configuration includes the server URL and optional settings like 'disabled' and 'autoApprove'. ```json { "mcpServers": { "drift-common Docs": { "url": "https://gitmcp.io/drift-labs/drift-common", "disabled": false, "autoApprove": [] } } } ``` -------------------------------- ### Configure Augment Code for drift-common Docs MCP Source: https://gitmcp.io/drift-labs/drift-common/index Add the drift-common MCP server to Augment Code by providing a server name and either a command with arguments or a JSON configuration. This allows Augment Code to connect to the MCP server for documentation and code assistance. ```json { "mcpServers": { "git-mcp Docs": { "command": "npx", "args": [ "mcp-remote", "https://gitmcp.io/drift-labs/drift-common" ] } } } ``` -------------------------------- ### Configure VSCode for drift-common Docs MCP Source: https://gitmcp.io/drift-labs/drift-common/index Add the drift-common MCP server to your VSCode settings by creating or updating the '.vscode/mcp.json' file. This configuration specifies the server type as 'sse' and provides the URL. ```json { "servers": { "drift-common Docs": { "type": "sse", "url": "https://gitmcp.io/drift-labs/drift-common" } } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.