Setting Up Claude Code with Datamates
Connect Datamates to Claude Code to use your AI assistant with MCP (Model Context Protocol) server capabilities.
Configuration Steps
Tip
You can also install the extension using the Datamates GUI in VSCode or Cursor. If you do, skip to Step 3 on this page to continue the Claude Code setup.
Step 1: Install Extension in IDE
- Open Extensions in your IDE (
Ctrl+Shift+XorCmd+Shift+X). - Search for "Datamates".
- Find Datamates by Altimate AI.
- Click Install.
Step 2: Add Instance Name and API Key
Configure your Altimate credentials in the Datamates extension:
- Click Select datamate on the bottom of your IDE screen.
- Click on the vertical ellipse on the top right of the Datamate menu.
- Select view credentials.
- Select your Datamates' plan: Either Community, Pro, or Team Plan or Enterprise Plan.
- Enter your Altimate Instance Name (e.g.,
mycompany). - Enter your Altimate API Key.
Note
To find your API Key and instance name:
- Navigate to the Datamates website.
- On the sidebar, click settings.
- Click API Key.
Step 3: Run Altimate Diagnostics and Copy Server URL
- Open Command Palette (
Ctrl+Shift+P/Cmd+Shift+P). - Run:
Datamates: Run Altimate Diagnostics. - Wait for diagnostics to complete successfully.
- Copy the server URL from the diagnostics output (it will look like
http://localhost:7700/sse).
Note
The port number (7700) may vary depending on your system. Use the exact URL shown in your diagnostics output.
Step 4: Add MCP Server to Claude Code
Add the Datamates MCP server to Claude Code using the command line:
Important
Make sure to replace http://localhost:7700/sse with the actual server URL from your diagnostics output if it's different.
Command Breakdown
claude mcp add- Adds a new MCP server--transport sse- Specifies Server-Sent Events transport typedatamate- The name for this MCP serverhttp://localhost:7700/sse- The server URL from your diagnostics
You can verify the MCP server was added by running:
Interactive Demo
Configuration Steps
Step 1: Install Nodejs
Install Nodejs if not already installed. You can download it from here.
Step 2: Install MCP CLI
Install the AltimateAI MCP CLI globally using npm:
Step 3: Setup Configuration
Input your API key and instance name into this JSON and save it as a config file.
{
"connections": [],
"settings": {
"1": {}
},
"datamate_id": "1",
"altimateUrl": "https://api.myaltimate.com",
"altimateInstanceName": "YOUR_INSTANCE_NAME",
"altimateApiKey": "YOUR_API_KEY"
}
Note
To find your API Key and instance name:
- Navigate to the Datamates website.
- On the sidebar, click settings.
- Click API Key.
Step 4: Start MCP Server
Run the following command in your terminal to start the MCP server:
Command Breakdown
Argument --config-file is optional and will be needed only if you are setting this datamate for the first time in your machines
Verify Connection
In your Claude Code session, run the following command to verify the connection and datamate mcp server should be listed with connected status.
Interactive Demo
Related: Setup Overview