wmpf-mcp
Provides tools for debugging Windows WeChat Mini Programs through WMPFDebugger, including JavaScript evaluation, breakpoints, script inspection, debugger control, network request inspection, and network capture with HAR export.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wmpf-mcpsearch scripts for the function name 'handleLogin'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
wmpf-mcp
wmpf-mcp is a dependency-free MCP stdio server for AI-assisted debugging of Windows WeChat Mini Programs through WMPFDebugger.
It connects to the CDP WebSocket exposed by WMPFDebugger, normally ws://127.0.0.1:62000, and exposes MCP tools for JavaScript evaluation, script inspection, breakpoints, debugger control, and network inspection.
Requirements
Windows WeChat and WMPFDebugger running successfully.
Node.js
>=22for the built-inWebSocketimplementation.A mini program that you own or are authorized to inspect.
Related MCP server: MiniApp CDP MCP
Quick Start
node .\src\server.jsUse a different local WebSocket URL with either option:
node .\src\server.js --ws ws://127.0.0.1:62000
$env:WMPF_CDP_WS="ws://127.0.0.1:62000"
node .\src\server.jsMCP Client Config
{
"mcpServers": {
"wmpf": {
"command": "node",
"args": [
"C:\\path\\to\\wmpf-mcp\\src\\server.js"
],
"env": {
"WMPF_CDP_WS": "ws://127.0.0.1:62000"
}
}
}
}Tools
connect: Connect to the WMPFDebugger CDP WebSocket.status: Show connection, cache, pause, and CDP domain status.runtime_evaluate: Evaluate JavaScript throughRuntime.evaluate.cdp_call: Call a raw Chrome DevTools Protocol method.list_scripts: List scripts observed fromDebugger.scriptParsed.get_script_source: Read source for a CDPscriptId.search_scripts: Search loaded script sources by text or regular expression.set_breakpoint_by_url: Set a breakpoint using a URL regex.debugger_control: Pause, resume, step over, step into, or step out.list_network_requests: List cached requests with sensitive data redacted by default.get_response_body: Read a response body by CDPrequestId.last_events: Show recent raw CDP events for compatibility diagnostics.
Example network query:
{
"limit": 100,
"include_sensitive": false
}Set include_sensitive to true only when the debugging task requires original authorization headers, cookies, or request bodies.
Security
WebSocket connections are restricted to
localhost,127.0.0.1, and::1by default.Set
WMPF_ALLOW_REMOTE=1only when you intentionally need a remote debugger.WebSocket URLs containing embedded credentials are rejected.
Authorization headers, cookies, and request bodies are redacted by default.
runtime_evaluateandcdp_callcan execute code or mutate debugger state.
Configuration
Variable | Default | Description |
|
| Default debugger WebSocket URL. |
|
| CDP connection and request timeout. |
|
| Maximum cached script metadata entries. |
|
| Maximum cached network entries. |
|
| Maximum recent CDP events. |
| unset | Set to |
Invalid numeric configuration values fall back to their safe defaults.
Development
npm run check
npm testWMPFDebugger may not implement every CDP method exactly like a full Chrome browser. Use cdp_call and last_events to diagnose protocol compatibility issues.
AI 调试优化
v0.2.0 增加了一组更适合 AI 直接操作的小程序调试工具:
断点 / 单步
search_scripts: 在已加载脚本里按文本或正则搜索,可返回上下文。set_breakpoint_on_text: 搜索匹配文本并直接打断点,适合让 AI 用函数名、接口名、关键变量名定位。set_breakpoint_by_script_id: 已知scriptId和行号时精确打断点。list_breakpoints/remove_breakpoint: 查看和移除本次 MCP 会话设置的断点。paused_info: 断住后获取命中断点、调用栈和callFrameId。evaluate_on_callframe: 在暂停栈帧里执行表达式,查看局部变量、参数、this 等。
推荐流程:
{ "query": "functionNameOrApiKeyword", "filter": "appservice", "context_lines": 2 }{ "query": "functionNameOrApiKeyword", "filter": "appservice", "occurrence": 1 }断住后:
{ "include_scopes": true }{ "call_frame_id": "CALL_FRAME_ID", "expression": "JSON.stringify({ arg0, thisKeys: Object.keys(this || {}) })" }抓包 / HAR
network_capture_control: 开始、停止或清空网络抓包缓存。list_network_requests: 按 URL、正则、method、status、type、mime、failed 过滤请求。get_request_detail: 查看单个请求,可同时拉响应体。export_network_har: 导出当前缓存为 HAR-like JSON,方便交给 AI 汇总接口行为。
推荐流程:
{ "action": "start", "clear": true, "disable_cache": true }复现小程序操作后:
{ "url_filter": "/api/", "limit": 100, "include_sensitive": false }再查看单条响应:
{ "request_id": "REQUEST_ID", "include_body": true, "include_sensitive": false }Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/852764/wmpf-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server