Wecom Docs MCP Server

An ergonomic **stdio MCP facade** over WeCom's official **robot-doc MCP** backend. It proxies all 25 backend tools verbatim and adds a transform

Local serverstdioPython

What is the Wecom Docs MCP server?

An ergonomic stdio MCP facade over WeCom's official robot-doc MCP backend. It proxies all 25 backend tools verbatim and adds a transform layer that makes the raw output usable by LLM agents:. The wecom docs mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 2 defined tools rather than through you.

Adding it to your client

wecom-docs-mcp-server on PyPI is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Its toolset

Everything the assistant can do here goes through one of these:

  • Domain — Read
  • doc — get_doc_content

Configuration

You will need 2 environment variables: WECOM_MCP_APIKEY, WECOM_MCP_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Python 3.9+ - A WeCom 智能文档机器人 (Smart Doc Bot) with its API key — available to enterprises (≥10 members) via WeCom admin → 应用管理 → 智能文档机器人 → API. ---

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the wecom docs mcp server does with a few real requests.

When to reach for it

This sits in the AI and media services group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Wecom Docs's toolset — Domain, doc — is a fair guide to whether it matches your workflow. It is maintained by beltran12138; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
DomainRead
docget_doc_content

How to install the Wecom Docs MCP server

{
  "mcpServers": {
    "wecom-doc": {
      "command": "wecom-docs-mcp-server",
      "env": { "WECOM_MCP_APIKEY": "your_apikey_here" }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.9+ - A WeCom 智能文档机器人 (Smart Doc Bot) with its API key — available to enterprises (≥10 members) via WeCom admin → 应用管理 → 智能文档机器人 → API. ---
VariableDescriptionRequired
WECOM_MCP_APIKEYCredential the server authenticates with.Yes
WECOM_MCP_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Wecom Docs to Domain.
  • Use Wecom Docs to doc.

Frequently asked questions

It connects Wecom Docs to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Domain, doc) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Wecom Docs directly.