Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.richard-kim-79/popup-mcp

NPM · @BLUESLAP/POPUP-MCP · SCANNED AUG 3

Create and manage Popup web pages via AI — no login required. 30초 만에 웹페이지를 만들고 AI로 편집하세요.

Available components

+18 this week 62 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability42
  • 0% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Fail
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 500 tokens (~50/item across 10 items; 9 tools + 1 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @blueslap/popup-mcp

# add to Claude Code
claude mcp add richard-kim-79-popup-mcp -- npx -y @blueslap/popup-mcp
# add to Codex CLI
codex mcp add richard-kim-79-popup-mcp -- npx -y @blueslap/popup-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "richard-kim-79-popup-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@blueslap/popup-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add richard-kim-79-popup-mcp --command npx --arg -y --arg @blueslap/popup-mcp
# ~/.hermes/config.yaml
mcp_servers:
  richard-kim-79-popup-mcp:
    command: "npx"
    args: ["-y", "@blueslap/popup-mcp"]
// mcp.json
{
  "mcpServers": {
    "richard-kim-79-popup-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@blueslap/popup-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +4
    • Stability: unverified → 0.23 functional
  • 2 Aug 26 +24
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Schema quality: 0 → unverified functional
    • Tool coverage: 100 → unverified functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Schema quality: unverified → good functional
    • Licence: MIT functional
  • 1 Aug 26 +15
    • Malware scan: unverified → pass security
  • 31 Jul 26 −25
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 27 Jul 26 44

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@blueslap/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 9 exposed · ~496 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
create_page ~38

Create a new Popup web page from an array of blocks. Returns the slug and public URL.

NameTypeReqDescription
blocksarrayyesArray of content blocks

No output schema declared.

No examples provided.

create_page_from_template ~95

Create a new page from a template. You can override individual block content by index.

NameTypeReqDescription
overridesarrayArray of overrides per block index. Use null to keep default. Example: [{"content": "My Title"}, null, null, {"content": "Custom text"}]
templateIdstringyesTemplate ID (e.g. "landing-page", "event-invite", "link-in-bio")

No output schema declared.

No examples provided.

delete_page ~37

Delete a Popup page by its slug. This is a soft delete (recoverable).

NameTypeReqDescription
slugstringyesThe page slug to delete

No output schema declared.

No examples provided.

edit_page_blocks ~57

Partially edit blocks on a page using batch operations (insert, update, delete, move). More efficient than replacing all blocks.

NameTypeReqDescription
operationsarrayyesArray of operations to apply
slugstringyesThe page slug

No output schema declared.

No examples provided.

get_page ~38

Get the content and metadata of a Popup page by its slug.

NameTypeReqDescription
slugstringyesThe page slug (e.g. "abc123")

No output schema declared.

No examples provided.

list_my_pages ~56

List all pages created with your API key. Supports pagination.

NameTypeReqDescription
pagenumberPage number (default: 1)
pageSizenumberItems per page (default: 20, max: 100)

No output schema declared.

No examples provided.

list_templates ~26

List available page templates (landing page, event invite, link-in-bio, etc.)

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

update_page_blocks ~52

Replace all blocks on a page with a new set of blocks. Use this for full page rewrites.

NameTypeReqDescription
blocksarrayyesComplete new set of blocks
slugstringyesThe page slug

No output schema declared.

No examples provided.

upload_image ~97

Get a signed upload URL for adding an image to a page. Returns the signed URL and public URL. The LLM or client must then upload the file to the signed URL.

NameTypeReqDescription
filenamestringyesOriginal filename (e.g. "photo.jpg")
mimeTypestringyesMIME type of the file
sizenumberyesFile size in bytes
slugstringyesThe page slug to upload to

No output schema declared.

No examples provided.