Back to directory

tencentmeeting-cli

Maintenance: Active

tencentcloud/tencentmeeting-cli

Tencent Meeting command-line tool with OAuth2 authorization for meeting, recording and attendance-report management.

View on GitHubHomepage
$ npm install -g @tencentcloud/tmeet

236

stars

19

forks

Go

Language

NOASSERTION

License

2026-04-07

Created

2026-09-02

Last push

MIT Tencent Meeting CLI (tmeet) installed as an agent skill via `npx skills add`; covers meetings, recordings, minutes and reports over OAuth2. The README never mentions DeepSeek Harness, so DSH integration is inferred from the skills install path.

DSH integration

Compatible

Inferred

Safety audit

Unaudited

Last verified

2026-08-21

License

Not specified by the author

01What can it help you accomplish?

  • Manage Tencent Meeting schedules from an AI agent conversation

    JSON results for creating, querying, updating, searching and cancelling meetings (including recurring ones) and adding/removing/replacing invitees via `tmeet meeting` commands

    Developers and team assistants who want meeting scheduling automated inside an agent harness such as DeepSeek Harness

  • Retrieve meeting recordings, smart minutes and transcripts for an agent to summarize or search

    Recording lists, download URLs, smart minutes (zh/en/ja), transcript details/paragraphs and keyword search over transcribed content via `tmeet record` commands

    Teams that want agents to fetch and digest meeting content without opening the Tencent Meeting client

  • Pull participant reports and look up enterprise contacts

    Participant lists, waiting-room logs, async participant detail export (xlsx/json with a 2-hour download link), and contact search/lookup by username, email or phone

    Meeting organizers and ops staff automating post-meeting reporting workflows

02How to install into DeepSeek Harness

Prerequisites

  • Node.js LTS (includes npm) — the README points users without npm to install Node.js LTS first
  • Or Go 1.22+ if building from source (`go build` / `make build`)
  • A Tencent Meeting account to complete OAuth2 authorization during `tmeet auth login`

Installation steps

  1. 01

    Install the CLI (recommended): `npm install -g @tencentcloud/tmeet` — after installation the `tmeet` command is directly usable; alternatively clone the repo and build from source with `go build -ldflags "-X tmeet/cmd.Version=v1.0.0" -o tmeet .` or `make build VERSION=v1.0.0`

    $ npm install -g @tencentcloud/tmeet

  2. 02

    Install the agent skill: `npx skills add TencentCloud/tencentmeeting-cli -y -g`

    $ npx skills add TencentCloud/tencentmeeting-cli -y -g

  3. 03

    Log in: `tmeet auth login` — opens the authorization URL in the default browser (add `--no-browser` to get the URL only); the CLI polls for the result (5-minute timeout) and saves the encrypted credentials locally

Verify the integration

Not specified by the author

03DSH integration and capability boundaries

DSH integrationCompatible

Installed as an agent skill via `npx skills add TencentCloud/tencentmeeting-cli -y -g`; the README never mentions DeepSeek Harness/dsh, so DSH usage is inferred from this generic skills install path, not author-stated.

  • Meeting lifecycle management

    `tmeet meeting` flags: subject, ISO 8601 start/end, recurrence options, invitee open_id listscreated / updated / cancelled meetings (normal and recurring), invitee add / remove / replace, meeting search and lists

    creates, modifies and cancels real meetings on the Tencent Meeting platform and sends invitations to members
  • Recording, minutes & transcript access

    meeting ID / meeting code / time range / record file IDrecording lists, download addresses, smart minutes, transcript details/paragraphs and transcript keyword search

    `record permission-apply-commit` is a write operation that formally submits a recording-permission approval request after user confirmation
  • OAuth2 device-code login with encrypted local credentials

    `tmeet auth login` (optionally `--no-browser`)login status, AES-256-GCM encrypted credentials stored locally (config under `~/.tmeet/`), plaintext never written to disk

    opens the system browser for authorization and writes encrypted credential files to the local config directory
  • Troubleshooting export & feedback

    optional time range, `--upload`, feedback category/intentlocal logs packaged as a zip at `~/tmeet_ts_{datetime}.zip`; feedback reported to the server

    writes a zip file locally; `--upload` sends logs to the server and `tshoot feedback` reports issues to the server (login required)

04Who is it for? When not to use it?

Good for

  • Developers and team assistants who want meeting scheduling automated inside an agent harness such as DeepSeek Harness
  • Teams that want agents to fetch and digest meeting content without opening the Tencent Meeting client
  • Meeting organizers and ops staff automating post-meeting reporting workflows

Not for

  • Once authorized, the AI agent gains your Tencent Meeting data access (user info, meeting/recording/minutes management and file export) and acts under your identity within the authorized scope; the README warns model hallucination or prompt injection may cause data leakage or unexpected operations — run `tmeet auth logout` immediately if you suspect misuse.
  • All operations require network access to the Tencent Meeting Open Platform plus an OAuth2 device-code login; authorization polling times out after 5 minutes, and some features (log upload, feedback) need a logged-in session.

05Compatibility, maintenance and safety notes

  • Once authorized, the AI agent gains your Tencent Meeting data access (user info, meeting/recording/minutes management and file export) and acts under your identity within the authorized scope; the README warns model hallucination or prompt injection may cause data leakage or unexpected operations — run `tmeet auth logout` immediately if you suspect misuse.
  • All operations require network access to the Tencent Meeting Open Platform plus an OAuth2 device-code login; authorization polling times out after 5 minutes, and some features (log upload, feedback) need a logged-in session.
  • Since v1.0.5 the legacy pagination flags (`--page` / `--pos` / `--size`) are deprecated and may be removed in future versions; use `--page-token` + `--page-size` instead.
2026-04-072026-08-18v1.0.15

MIT (per README) · actively maintained (latest release v1.0.15, 2026-08-07)

06Frequently asked questions

How does tencentmeeting-cli connect to DeepSeek Harness?

Install the CLI (`npm install -g @tencentcloud/tmeet`) and then run `npx skills add TencentCloud/tencentmeeting-cli -y -g` to register the agent skill. The README does not mention DeepSeek Harness by name — it ships as a generic agent skill — so DSH usage is inferred from this install path rather than documented.

Is it a native dsh plugin or an MCP server?

Neither is stated. It is a standalone Go CLI (`tmeet`) plus an agent skill; the agent invokes the CLI commands. Authentication uses the OAuth2 device-code flow via `tmeet auth login`, not an API key or MCP endpoint.

What prerequisites do I need?

Node.js LTS (with npm) for the recommended install, or Go 1.22+ to build from source. You also need a Tencent Meeting account to complete the browser-based OAuth2 authorization — the CLI polls for the result with a 5-minute timeout.

Where do credentials and data go?

Credentials are encrypted with AES-256-GCM and stored locally (config under `~/.tmeet/`); plaintext never touches disk. All meeting/recording operations go to the Tencent Meeting Open Platform over the network under your authorization. `tmeet auth logout` deletes the local credentials.

What limitations should I know about?

Since v1.0.5 the old pagination flags (`--page` / `--pos` / `--size`) are deprecated and may be removed — use `--page-token` + `--page-size`. Also, once authorized the agent can manage your meetings and export files; the README warns about hallucination / prompt-injection risks and recommends logging out immediately if you suspect misuse.

08Data and sources

  • Inferredgithub.com0407d61aa333…

    npx skills add TencentCloud/tencentmeeting-cli -y -g

  • Author-claimedgithub.com0407d61aa333…

    腾讯会议命令行工具(CLI),基于腾讯会议开放平台 OAuth2 授权,支持会议管理、录制管理、参会报告等功能。

This page is generated from the project’s public documentation, repository metadata and a structured parse of DSH Plugins; last verified on 2026-08-21. Found an error? Submit a correction.

🏆

Best DeepSeek Harness Plugins

Twelve plugins worth installing first — picked from the whole catalog, across every category.

DSH Plugins is an independent community directory of DeepSeek Harness plugins. Not affiliated with or endorsed by DeepSeek. Third-party plugins are not security-audited — review the source before installing.

New DeepSeek Harness plugins, weekly. No spam.