plasmate-mcp 0.4.1 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mcp.json +8 -0
- package/.plugin/plugin.json +14 -0
- package/README.md +17 -0
- package/package.json +3 -3
package/.mcp.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "plasmate",
|
|
3
|
+
"version": "0.4.1",
|
|
4
|
+
"description": "Headless browser MCP server for AI agents. Fetches web pages as a Semantic Object Model (SOM) — structured JSON with typed regions and stable element IDs. 17x average token reduction vs raw HTML.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Plasmate Labs",
|
|
7
|
+
"url": "https://plasmatelabs.com"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://plasmate.app",
|
|
10
|
+
"repository": "https://github.com/plasmate-labs/plasmate-mcp",
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"logo": "https://plasmate.app/logo.png",
|
|
13
|
+
"keywords": ["browser", "web", "mcp", "agent", "som", "scraping", "html", "fetch"]
|
|
14
|
+
}
|
package/README.md
CHANGED
|
@@ -88,3 +88,20 @@ Once connected, your AI gets these tools:
|
|
|
88
88
|
- [Documentation](https://docs.plasmate.app)
|
|
89
89
|
- [W3C Community Group](https://www.w3.org/community/web-content-browser-ai/)
|
|
90
90
|
- [GitHub](https://github.com/plasmate-labs/plasmate)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
## Part of the Plasmate Ecosystem
|
|
96
|
+
|
|
97
|
+
| | |
|
|
98
|
+
|---|---|
|
|
99
|
+
| **Engine** | [plasmate](https://github.com/plasmate-labs/plasmate) - The browser engine for agents |
|
|
100
|
+
| **MCP** | [plasmate-mcp](https://github.com/plasmate-labs/plasmate-mcp) - Claude Code, Cursor, Windsurf |
|
|
101
|
+
| **Extension** | [plasmate-extension](https://github.com/plasmate-labs/plasmate-extension) - Chrome cookie export |
|
|
102
|
+
| **SDKs** | [Python](https://github.com/plasmate-labs/plasmate-python) / [Node.js](https://github.com/plasmate-labs/quickstart-node) / [Go](https://docs.plasmate.app/sdk-go) / [Rust](https://github.com/plasmate-labs/quickstart-rust) |
|
|
103
|
+
| **Frameworks** | [LangChain](https://github.com/langchain-ai/langchain/pull/36208) / [CrewAI](https://github.com/plasmate-labs/crewai-plasmate) / [AutoGen](https://github.com/plasmate-labs/autogen-plasmate) / [Smolagents](https://github.com/plasmate-labs/smolagents-plasmate) |
|
|
104
|
+
| **Tools** | [Scrapy](https://github.com/plasmate-labs/scrapy-plasmate) / [Audit](https://github.com/plasmate-labs/plasmate-audit) / [A11y](https://github.com/plasmate-labs/plasmate-a11y) / [GitHub Action](https://github.com/plasmate-labs/som-action) |
|
|
105
|
+
| **Resources** | [Awesome Plasmate](https://github.com/plasmate-labs/awesome-plasmate) / [Notebooks](https://github.com/plasmate-labs/notebooks) / [Benchmarks](https://github.com/plasmate-labs/plasmate-benchmarks) |
|
|
106
|
+
| **Docs** | [docs.plasmate.app](https://docs.plasmate.app) |
|
|
107
|
+
| **W3C** | [Web Content Browser for AI Agents](https://www.w3.org/community/web-content-browser-ai/) |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "plasmate-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "MCP server for Plasmate - the browser engine for AI agents. Use with Claude Code, Claude Desktop, Cursor, Windsurf.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"cursor"
|
|
14
14
|
],
|
|
15
15
|
"bin": {
|
|
16
|
-
"plasmate-mcp": "
|
|
16
|
+
"plasmate-mcp": "bin/plasmate-mcp.mjs"
|
|
17
17
|
},
|
|
18
18
|
"type": "module",
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"homepage": "https://plasmate.app",
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/plasmate-labs/plasmate-mcp"
|
|
23
|
+
"url": "git+https://github.com/plasmate-labs/plasmate-mcp.git"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=18"
|