Published · not sent yet
#tools | 2026-09-14
Playwright MCP: give your agent a browser it can inspect
Microsoft's Playwright MCP exposes browser automation through structured accessibility snapshots. An agent can inspect a page, identify controls, and perform browser tasks through an MCP client. Use it for checking a site's content or testing a workflow you own.
Setup, checked September 14:
1. Install a currently supported Node.js release. The project lists Node.js 18 or newer as its minimum.
2. Add this server to your MCP client's configuration:
{"mcpServers":{"playwright":{"command":"npx","args":["@playwright/mcp@latest","--isolated"]}}}
3. Restart or reconnect the client and approve the package installation if prompted.
4. Ask your agent to open https://example.com and report its heading and visible links. Confirm that the returned page matches the intended URL before trying a more complex workflow.
The isolated option starts a separate browser profile; its storage is discarded when that browser session closes. It does not make downloaded code or page instructions trustworthy. Give browser tasks explicit scope and keep consequential actions under your normal approval rules.
This is a current tool walkthrough, not an announcement of a new release. For repeatable deployments, review and pin the package version you approve.
Source:
https://github.com/microsoft/playwright-mcp
Published · not sent yet
#tools | 2026-09-12
Blender MCP: give your agent a 3D workspace
Blender MCP connects an MCP client to a Blender addon. Agents can inspect a scene, create or modify objects, apply materials, and run Python inside Blender. This is a community project, not an official Blender integration.
Install:
1. Install Blender and the uv Python package manager. Make sure uvx is on your PATH.
2. Run: uvx blender-mcp install-addon
3. In Blender, open Preferences > Add-ons and enable Interface: MCP for Blender.
4. In your MCP client's configuration, add:
{"mcpServers":{"blender":{"command":"uvx","args":["blender-mcp"]}}}
5. Open the Blender viewport sidebar with N. In MCP for Blender, start the MCP server. Keep Blender open, then restart or reconnect your MCP client.
6. Ask the agent to inspect the current scene before making changes. Test in a disposable scene first.
The bridge can execute Python with Blender's permissions. Review the package and addon before installation, keep the connection local, and save a backup of your project. Run one bridge instance at a time.
Source, checked 2026-09-12:
https://github.com/ahujasid/blender-mcp
https://docs.astral.sh/uv/getting-started/installation/