zhizhuodemao/js-reverse-mcp
为 AI Agent 设计的 JS 逆向 MCP Server,内置反检测,基于 chrome-devtools-mcp 重构 | JS reverse engineering MCP server with agent-first tool design and built-in anti-detection. Rebuilt from chrome-devtools-mcp.
Platform-specific configuration:
{
"mcpServers": {
"js-reverse-mcp": {
"command": "npx",
"args": [
"-y",
"js-reverse-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
English | 中文
A JavaScript reverse engineering MCP server that enables AI coding assistants (Claude, Cursor, Copilot) to debug and analyze JavaScript code in web pages.
Built on the Patchright anti-detection engine with multi-layered anti-bot bypass capabilities, allowing it to work on sites with bot detection such as Zhihu and Google.
No installation required. Add to your MCP client configuration:
{
"mcpServers": {
"js-reverse": {
"command": "npx",
"args": ["js-reverse-mcp"]
}
}
}claude mcp add js-reverse npx js-reverse-mcpGo to Cursor Settings -> MCP -> New MCP Server, and use the configuration above.
code --add-mcp '{"name":"js-reverse","command":"npx","args":["js-reverse-mcp"]}'git clone https://github.com/nicecaesar/js-reverse-mcp.git
cd js-Loading reviews...