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.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/server.json +25 -37
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pagebolt-mcp",
3
- "version": "1.0.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
- "name": "pagebolt",
3
- "version": "1.0.0",
4
- "description": "Take screenshots, generate PDFs, and create OG images from AI coding assistants.",
5
- "homepage": "https://pagebolt.dev",
6
- "repository": "https://github.com/Custodia-Admin/pagebolt-mcp",
7
- "tools": [
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
- "name": "take_screenshot",
10
- "description": "Capture a screenshot of a URL, HTML, or Markdown. 30+ parameters including device emulation, ad blocking, dark mode, geolocation, and more."
11
- },
12
- {
13
- "name": "generate_pdf",
14
- "description": "Generate a PDF from a URL or HTML content. Supports A4/Letter/Legal, margins, landscape, and page ranges."
15
- },
16
- {
17
- "name": "create_og_image",
18
- "description": "Create Open Graph / social card images from templates or custom HTML."
19
- },
20
- {
21
- "name": "run_sequence",
22
- "description": "Multi-step browser automation: navigate, click, fill, screenshot — all in one session."
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
  }