pagebolt-mcp 1.0.0 → 1.0.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 -1
- package/server.json +25 -37
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pagebolt-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP server for PageBolt — take screenshots, generate PDFs, and create OG images from AI coding assistants like Claude, Cursor, and Windsurf.",
|
|
5
5
|
"main": "src/index.mjs",
|
|
6
6
|
"bin": {
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
],
|
|
35
35
|
"author": "PageBolt <hello@pagebolt.dev> (https://pagebolt.dev)",
|
|
36
36
|
"license": "MIT",
|
|
37
|
+
"mcpName": "io.github.Custodia-Admin/pagebolt",
|
|
37
38
|
"repository": {
|
|
38
39
|
"type": "git",
|
|
39
40
|
"url": "git+https://github.com/Custodia-Admin/pagebolt-mcp.git"
|
package/server.json
CHANGED
|
@@ -1,41 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"description": "Take screenshots, generate PDFs, and create OG images from AI
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.Custodia-Admin/pagebolt",
|
|
4
|
+
"description": "Take screenshots, generate PDFs, and create OG images from your AI assistant.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/Custodia-Admin/pagebolt-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.1",
|
|
10
|
+
"packages": [
|
|
8
11
|
{
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
{
|
|
25
|
-
"name": "list_devices",
|
|
26
|
-
"description": "List 25+ device presets for viewport emulation (iPhone, iPad, MacBook, etc.)."
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"name": "check_usage",
|
|
30
|
-
"description": "Check current API usage and plan limits."
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
|
-
"config": {
|
|
34
|
-
"required": {
|
|
35
|
-
"PAGEBOLT_API_KEY": "Your PageBolt API key (get one free at https://pagebolt.dev)"
|
|
36
|
-
},
|
|
37
|
-
"optional": {
|
|
38
|
-
"PAGEBOLT_BASE_URL": "API base URL (default: https://pagebolt.dev)"
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "pagebolt-mcp",
|
|
14
|
+
"version": "1.0.1",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"environmentVariables": [
|
|
19
|
+
{
|
|
20
|
+
"description": "Your PageBolt API key (get one free at https://pagebolt.dev)",
|
|
21
|
+
"isRequired": true,
|
|
22
|
+
"format": "string",
|
|
23
|
+
"isSecret": true,
|
|
24
|
+
"name": "PAGEBOLT_API_KEY"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
39
27
|
}
|
|
40
|
-
|
|
28
|
+
]
|
|
41
29
|
}
|