pagebolt-mcp 1.5.1 → 1.5.2
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/package.json +2 -2
- package/src/index.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pagebolt-mcp",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "MCP server for PageBolt — take screenshots, generate PDFs, create OG images, inspect pages, and record demo videos from AI coding assistants like Claude, Cursor, and Windsurf.",
|
|
5
5
|
"main": "src/index.mjs",
|
|
6
6
|
"module": "src/index.mjs",
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
],
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
61
|
-
"zod": "^
|
|
61
|
+
"zod": "^3.25.0"
|
|
62
62
|
}
|
|
63
63
|
}
|
package/src/index.mjs
CHANGED
|
@@ -57,7 +57,7 @@ async function callApi(endpoint, options = {}) {
|
|
|
57
57
|
const method = options.method || 'GET';
|
|
58
58
|
const headers = {
|
|
59
59
|
'x-api-key': API_KEY,
|
|
60
|
-
'user-agent': 'pagebolt-mcp/1.5.
|
|
60
|
+
'user-agent': 'pagebolt-mcp/1.5.2',
|
|
61
61
|
...(options.body ? { 'Content-Type': 'application/json' } : {}),
|
|
62
62
|
};
|
|
63
63
|
|