@lynx-js/devtool-mcp-server
v0.4.1
Published
The Lynx DevTool for coding agent.
Readme
@lynx-js/devtool-mcp-server
The Lynx DevTool for coding agents.
@lynx-js/devtool-mcp-server lets your coding agent (such as Gemini, Claude, Cursor or Copilot)
control and inspect a live Lynx Engine. It acts as a Model-Context-Protocol
(MCP) server, giving your AI coding assistant access to the full power of
Lynx DevTools for reliable automation.
Requirements
- Node.js v18.19 or a newer latest maintenance LTS version.
- A device or simulator opened with Lynx Engine opened and connected.
Getting started
Add the following config to your MCP client:
{
"mcpServers": {
"lynx-devtool": {
"command": "npx",
"args": [
"-y",
"@lynx-js/devtool-mcp-server@latest"
]
}
}
}claude mcp add lynx-devtool npx @lynx-js/devtool-mcp-server@latestcodex mcp add lynx-devtool -- npx @lynx-js/devtool-mcp-server@latestcode --add-mcp '{"name":"lynx-devtool","command":"npx","args":["@lynx-js/devtool-mcp-server@latest"]}'Click the button to install:
Or install manually:
Go to Cursor Settings -> MCP -> New MCP Server. Use the config provided above.
Project wide:
gemini mcp add lynx-devtool npx @lynx-js/devtool-mcp-server@latestGlobally:
gemini mcp add -s user lynx-devtool npx @lynx-js/devtool-mcp-server@latestAlternatively, follow the MCP guide and use the standard config from above.
Credits
This project is inspired by chrome-devtool-mcp. Both the implementation and documentation have been adapted and referenced from the original MCP server.
