Skip to content

Remote MCP

Remote MCP connects via URL and does not require installing the Ardot client locally. It suits most day-to-day collaboration scenarios.

MCP server URL: https://ardot.tencent.com/mcp.

Auto-configure with an AI agent

Paste the following prompt into your AI agent chat so the agent can write the MCP configuration for you:

text
Help me configure Ardot Remote MCP: server name ardot-remote, type http, URL https://ardot.tencent.com/mcp. After configuration, if trust or OAuth authorization is required, prompt me to complete it using the flow for my AI agent.

WorkBuddy

Open Connectors

  1. Open WorkBuddy. In the left sidebar, click Experts · Skills · Connectors, then select Connectors.

    Open Connectors

  2. In the top-right of the page, click Custom connector to open MCP service management, then click Configure MCP.

    Open MCP configuration

Add the ardot-remote entry

In the mcp.json editor, add the following under mcpServers (keep any existing entries), then click Save:

json
{
  "mcpServers": {
    "ardot-remote": {
      "type": "http",
      "url": "https://ardot.tencent.com/mcp"
    }
  }
}

After adding, it should look like this:

Edit and save mcp.json

Trust and complete OAuth

  1. After the first add, WorkBuddy prompts you to trust this MCP. Click Trust.

    First-connection trust confirmation

  2. When the status becomes Authentication required, click Connect.

    Click Connect to start authentication

  3. The browser opens the Ardot authorization page. Confirm the account is correct, then click Approve.

    Approve OAuth authorization

Confirm connection

Back in MCP service management, ardot-remote should show as enabled and list available tools (tools are updated over time; check what is actually available).

Confirm tools are enabled

CodeBuddy Code

  1. Run the following command in a terminal:

    bash
    codebuddy mcp add ardot-remote --transport http https://ardot.tencent.com/mcp --scope user
  2. In CodeBuddy Code, /mcp shows the newly added ardot-remote MCP. You will see that OAuth authorization is required.

    CodeBuddy Code MCP list

  3. Select it and press Enter to open the submenu. Choose Authenticate and press Enter. The browser opens the authorization page; confirm the account is correct, then click Approve.

    CodeBuddy Code authorization dialog

    You can also copy the authorization URL and open it in a browser to complete authorization.

For more configuration details, see the CodeBuddy Code docs.

Claude Code

Run the following command in a terminal:

bash
claude mcp add ardot-remote --transport http https://ardot.tencent.com/mcp --scope user

For more configuration details, see the Claude Code docs.

Codex CLI

Run the following command in a terminal:

bash
codex mcp add ardot-remote --url https://ardot.tencent.com/mcp

For more configuration details, see the Codex CLI docs.

Cursor

  1. Open Cursor Settings. Use the menu Cursor → Settings → Cursor Settings, or press Cmd + Shift + P to open the command palette and run Cursor: Open Settings.
  2. Click New MCP Server.
  3. Add the following configuration.
    json
    {
      "mcpServers": {
        "ardot-remote": {
          "type": "http",
          "url": "https://ardot.tencent.com/mcp"
        }
      }
    }

For more configuration details, see the Cursor docs.

VS Code

  1. Press Cmd + Shift + P to open the command palette and run MCP: Add Server.
  2. Select HTTP.
  3. Enter the URL https://ardot.tencent.com/mcp.
  4. Enter the server name ardot-remote.
  5. Choose the configuration scope. The default Global scope is fine.
  6. You get a configuration like the following, and an authorization dialog appears—open the browser to complete authorization.
    json
    {
      "servers": {
        "ardot-remote": {
          "type": "http",
          "url": "https://ardot.tencent.com/mcp"
        }
      }
    }

For more configuration details, see the VS Code docs.

Other AI agents

For AI agents not listed separately here, as long as they support MCP HTTP servers, add the following in their MCP settings:

json
{
  "mcpServers": {
    "ardot-remote": {
      "type": "http",
      "url": "https://ardot.tencent.com/mcp"
    }
  }
}

Field names (such as mcpServers and type) follow your AI agent's docs. What matters is the server name ardot-remote and the URL https://ardot.tencent.com/mcp. First-time connections usually require a trust confirmation and OAuth authorization.

After configuration, you can verify in chat—for example: “Using the ardot-remote MCP, create a design file.” If you cannot connect, see Troubleshooting.