wechat-dev-mcp AGENTS.md

wechat-dev-mcp AGENTS.md is an instructions file for Codex, OpenCode from jiawei686/wechat-dev-mcp. It costs 1,124 tokens per session, scanned A, original, MIT.

Project instructions for connecting an AI coding agent to WeChat DevTools MCP, a service for controlling and inspecting WeChat mini-programs and mini-games. They describe how to launch or connect to DevTools and wait until the project is ready.

In plain words
What is it for?
Use them when developing or debugging a WeChat mini-program or mini-game through WeChat DevTools MCP.
Why use it?
They give the agent the required connection and readiness checks, which differ between a mini-program and a mini-game.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/jiawei686/wechat-dev-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/jiawei686/wechat-dev-mcp

Made for: Codex, OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for wechat-dev-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/jiawei686/wechat-dev-mcp/agents-md.svg)](https://agentmods.dev/instructions/jiawei686/wechat-dev-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/jiawei686/wechat-dev-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/jiawei686/wechat-dev-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,124 This file is loaded in full into every session.
When invoked 1,124 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01124 $0.01124
Opus 5 $0.00562 $0.00562
Sonnet 5 $0.00225 $0.00225
Haiku 4.5 $0.00112 $0.00112

Measured 4d ago against content hash 26c58b385bc1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

wechat-dev-mcp AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 115 lines

How it starts

The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AI Agent Workflow Guide for WeChat DevTools MCP

This guide helps AI agents (Claude, Cursor, Windsurf) effectively use the WeChat DevTools MCP server.

The server supports two project types, auto-detected from project.config.json:

  • compileType: "miniprogram"mini-program (pages + DOM)
  • compileType: "game"mini-game (canvas, no pages/DOM)

Getting Started

Step 1: Establish Connection

// Use 'launch' to open a project (auto-detects type):
{
  "name": "launch",
  "arguments": {
    "projectPath": "/absolute/path/to/your/project",
    "cdpEndpoint": "ws://127.0.0.1:9421/<id>"   // optional, mini-game deep debug
  }
}

// Or 'connect' to attach to an already running DevTools:
{
  "name": "connect",
  "arguments": {
    "wsEndpoint": "ws://localhost:9420",
    "projectPath": "/absolute/path/to/your/project"
  }
}

Step 2: Wait for Readiness

After launching:

  • Mini-program: use wait_ready or check_health until compilationStatus: "ready".
  • Mini-game: readiness is detected via GameGlobal runtime liveness (NOT pages). check_health shows compilationStatus: "game_running" and projectType: "game".

Step 3: Detect Project Type

Always check projectType from check_health (or get_project_type) before choosing tools:

{ "name": "check_health" }
// Response includes: connected, projectType, engineType, pageReady, cdpConnected, tips
  • projectType: "program" → use page/DOM tools.
  • projectType: "game" → use evaluate, call_wx_method, game_*, game_touch, screenshot.

Tool masking: ListTools auto-hides mini-program-only tools (navigate, get_element, tap_element, …) when connected to a mini-game, and hides mini-game-only tools when connected to a mini-program. You won't see irrelevant tools.

For Mini-Programs (projectType: "program")

Use: get_page_data, get_element, tap_element, navigate_to, etc.

For Mini-Games (projectType: "game")

Use: evaluate, call_wx_method, game_get_info, game_touch, game_canvas_screenshot, game_get_fps, game_webgl_debug, game_get_network_logs, game_export_vconsole, screenshot. Avoid: get_page_data, get_element, tap_element, navigate_to — these require pages and will be rejected.

Read the full file on GitHub · 115 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 115 lines · 1,124 tokens per session scan A 26c58b385bc1

Subscribe to this mod's changes

wechat-dev-mcp AGENTS.md is an instructions file published in the GitHub repository jiawei686/wechat-dev-mcp (17 stars, last pushed 1mo ago), licensed MIT. It adds 1,124 tokens to every session, about $0.0056 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.