### Install and Setup Rube MCP Server via npm Source: https://github.com/composiohq/rube/blob/master/README.md This snippet shows how to install the Rube MCP server globally using npm or execute it directly with npx. The setup command initiates a wizard to configure Rube for your AI client, simplifying the integration process. ```bash npm install -g @composio/rube rube setup ``` ```bash npx @composio/rube setup ``` -------------------------------- ### Manually Setup Rube MCP Server for Claude Desktop (Free/Pro) Source: https://github.com/composiohq/rube/blob/master/README.md This command facilitates the automatic setup of the Rube MCP server for Claude Desktop (Free/Pro plans). It requires the MCP URL and a name for the Rube connector, after which Claude Desktop needs to be restarted for the changes to take effect. ```bash npx @composio/mcp@latest setup "https://rube.app/mcp" "rube" --client claude ``` -------------------------------- ### Setup Rube MCP Server for VS Code Source: https://github.com/composiohq/rube/blob/master/README.md This command installs the Rube MCP server within VS Code, enabling chat extensions like ChatGPT or Claude to interact with connected applications. After running the command, VS Code needs to be restarted, and specific chat MCP settings should be enabled to ensure proper functionality. ```bash npx mcp-remote "https://rube.app/mcp" ``` -------------------------------- ### Register Rube Server with Claude Code CLI Source: https://github.com/composiohq/rube/blob/master/README.md This command registers the Rube server with Claude Code using the HTTP transport. Ensure Rube is running and accessible at the specified URL. This is a one-time setup command. ```bash claude mcp add --transport http rube -s user "https://rube.app/mcp" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.