AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Israelalagbe Mcp Server

mcp-israelalagbe-mcp-server · by israelalagbe

MCP server from israelalagbe/mcp-server.

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add mcp-israelalagbe-mcp-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-israelalagbe-mcp-server)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Israelalagbe Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

puppeteer-mcp-server

An MCP server that opens web pages with Puppeteer and performs browser actions on the instruction of an AI client. The AI inspects a page through a snapshot, then calls the tools below to navigate, click, type, and read results.

Requirements

  • Node.js 18+
  • Chromium is downloaded automatically by Puppeteer on npm install.

Install

npm install

Run

npm start

The server speaks the MCP protocol over stdio, so it is normally launched by an MCP client rather than run by hand.

Add it to an MCP client

Point your client at the server command. For a Claude Desktop-style config (mcpServers block):

{
  "mcpServers": {
    "puppeteer": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/src/index.js"]
    }
  }
}

Tools

| Tool | Purpose | | --- | --- | | browser_navigate | Open a URL. Returns the final URL, HTTP status, and title. | | browser_snapshot | Return the page URL, title, visible text, and a numbered list of interactive elements. Each element gets a ref. | | browser_get_text | Get the visible text of the page or of one CSS-selected element. | | browser_click | Click an element by ref (from a snapshot) or CSS selector. | | browser_type | Clear and type into an input/textarea by ref or selector, optionally pressing Enter. | | browser_press_key | Press a single key (Enter, Escape, ArrowDown, ...). | | browser_wait_for | Wait for a CSS selector or a piece of text to appear. | | browser_evaluate | Evaluate a JavaScript expression in the page and return the result. | | browser_screenshot | Return a PNG screenshot of the page (viewport or full page). | | browser_go_back | Navigate back in history. | | browser_close | Close the browser and free resources. |

Typical flow

  1. browser_navigate to a URL.
  2. browser_snapshot to see the page text and the actionable elements

(each with a ref).

  1. browser_click / browser_type using those refs.
  2. browser_snapshot or browser_get_text again to read the result.

Because a single browser instance is reused across calls, cookies and navigation state persist for the whole session until browser_close.

Configuration

Set via environment variables:

| Variable | Default | Description | | --- | --- | --- | | MCP_BROWSER_HEADLESS | true | Set to false to watch the browser (useful for debugging). | | MCP_BROWSER_TIMEOUT_MS | 30000 | Default navigation / wait timeout. | | MCP_BROWSER_WIDTH | 1280 | Viewport width. | | MCP_BROWSER_HEIGHT | 800 | Viewport height. |

Security note

browser_evaluate runs arbitrary JavaScript in the page context, and the server will navigate to any URL it is given. Run it only with clients and instructions you trust.

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.