If you haven't installed Wassette yet, follow the installation instructions first.
Click to install Wassette in GitHub Copilot in Visual Studio Code, or add the Wassete MCP server to VS Code from the command line using the code command:
code --add-mcp '{"name":"wassette","command":"wassette","args":["serve","--stdio"]}'You can list and configure MCP servers in VS Code by running the command MCP: List Servers in the command palette (Ctrl+Shift+P or Cmd+Shift+P).
Click the below button to use the one-click installation to add Wassette to Cursor.
First, install Claude Code (requires Node.js 18 or higher):
npm install -g @anthropic-ai/claude-codeAdd the Wassette MCP server to Claude Code using the following command:
claude mcp add -- wassette wassette serve --stdioThis will configure the Wassette MCP server as a local stdio server that Claude Code can use to execute Wassette commands and interact with your data infrastructure.
You can verify the installation by running:
claude mcp listTo remove the server if needed:
claude mcp remove wassetteFirst, install Gemini CLI (requires Node.js 20 or higher):
npm install -g @google/gemini-cliTo add the Wassette MCP server to Gemini CLI, you need to configure it in your settings file at ~/.gemini/settings.json. Create or edit this file to include:
{
"mcpServers": {
"wassette": {
"command": "wassette",
"args": ["serve", "--stdio"]
}
}
}Quit the Gemini CLI and reopen it.
Open Gemini CLI and verify the installation by running /mcp inside of Gemini CLI.