From aba99119dd13b9668315f02304917557d3465a63 Mon Sep 17 00:00:00 2001 From: Karthik Kreen Krishnan Date: Tue, 26 Nov 2024 14:55:00 +1300 Subject: [PATCH 1/2] Updated Puppeteer readme --- src/puppeteer/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/puppeteer/README.md b/src/puppeteer/README.md index e1d91b87..6bd67474 100644 --- a/src/puppeteer/README.md +++ b/src/puppeteer/README.md @@ -52,6 +52,19 @@ The server provides access to two types of resources: - JavaScript execution - Basic web interaction (navigation, clicking, form filling) +## Configuration to use Puppeteer Server +Here's the Claude Desktop configuration to use the Puppeter server: + +```json +{ + "mcpServers": { + "puppeteer": { + "command": "npx", + "args": ["-y", "@modelcontextprotocol/server-puppeteer", "http://example.com"] + } + } +} + ## License This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository. From ce0b743873fde3fb471b3a9c9715c04f191d54b9 Mon Sep 17 00:00:00 2001 From: Karthik Kreen Krishnan Date: Tue, 26 Nov 2024 16:52:07 +1300 Subject: [PATCH 2/2] removed argument --- src/puppeteer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/puppeteer/README.md b/src/puppeteer/README.md index 6bd67474..e81c69e6 100644 --- a/src/puppeteer/README.md +++ b/src/puppeteer/README.md @@ -60,7 +60,7 @@ Here's the Claude Desktop configuration to use the Puppeter server: "mcpServers": { "puppeteer": { "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-puppeteer", "http://example.com"] + "args": ["-y", "@modelcontextprotocol/server-puppeteer"] } } }