Connect VSCode + Cline to TeamoRouter
VSCode does not include AI coding features by itself, so it needs an extension to connect to an LLM. Cline, formerly Claude Dev, is a popular open-source AI coding extension for VSCode. It supports custom OpenAI-compatible endpoints and can run an agent workflow through TeamoRouter.
1. Prepare your TeamoRouter API Key
Open the TeamoRouter dashboard, create an account, create an API Key, and copy it. You can also view the complete model list in the dashboard.
2. VSCode is already installed
If VSCode and the Cline extension are already installed:
- Open VSCode.
- Click the Cline icon in the Activity Bar to open the Cline sidebar.
- Click the settings button in the top-right corner of the sidebar.

On the API Configuration screen:
- Choose OpenAI Compatible in the API Provider dropdown. The default may be OpenRouter, so make sure it is changed.
- Fill in:
- Base URL:
https://api.teamorouter.com/v1 - OpenAI Compatible API Key: paste the key you created in the TeamoRouter dashboard
- Model ID: enter the model you want to use
| Model name | Model ID |
|---|---|
| Claude fable 5 | claude-fable-5 |
| Claude opus 4.8 | claude-opus-4-8 |
| Claude opus 4.7 | claude-opus-4-7 |
| Claude opus 4.6 | claude-opus-4-6 |
| Claude sonnet 4.6 | claude-sonnet-4-6 |
| Claude haiku 4.5 | claude-haiku-4-5 |
| GPT 5.5 | gpt-5.5 |
| GPT 5.4 | gpt-5.4 |
| Gemini 3.1 pro preview | gemini-3.1-pro-preview |
| Gemini 3.5 flash | gemini-3.5-flash |
- Leave Custom Headers empty.
- Do not enable Set Azure API version or Use Azure Identity Authentication. They are only for Azure OpenAI.
- Keep Model Configuration collapsed unless you have a specific reason to change it.
- Click Continue to finish.
3. Install VSCode + Cline from scratch
Install VSCode
Download VSCode from the official website:
- macOS: download the
.dmg, or runbrew install --cask visual-studio-code - Windows: download and run the
.exeinstaller - Linux: download the
.deb,.rpm, or.tar.gzpackage for your system
Install the Cline extension
In VSCode, press Command + Shift + X on macOS, or Ctrl + Shift + X on Windows and Linux, to open Extensions. Search for Cline and install the extension published by saoudrizwan.
Click the Cline icon in the Activity Bar. The first launch opens the configuration page. Choose Bring my own API Key.

Configure the TeamoRouter provider
Follow the steps in the previous section.
Start using Cline
Click the plus button at the top of the Cline sidebar to create a new task. Describe what you want in natural language, such as "refactor this function to async". Cline will call the model through TeamoRouter, read files, edit code, and run commands as needed.
