npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

blockish-mcp-cli

v1.2.1

Published

Blockish MCP Server Configuration CLI

Readme

Blockish MCP CLI

A standalone Node.js command-line interface to configure Model Context Protocol (MCP) server connections for your WordPress site running Blockish (or any WordPress mcp-adapter plugin).

This tool interactively collects your WordPress connection details and automatically configures your preferred AI client to connect to your WordPress site via MCP.

Supported AI Clients

  • Claude Desktop
  • Cursor (Global or Project-level)
  • Windsurf IDE
  • Zed Editor
  • Cline (VS Code)
  • Continue.dev
  • Sourcegraph Cody
  • Goose
  • Antigravity IDE / CLI / Chat
  • Claude Code
  • Codex
  • ChatGPT Desktop

Usage

You can run this CLI tool directly via npx without needing to install it globally.

npx blockish-mcp-cli

Interactive Prompts

  1. Select your AI client: Choose the AI tool you want to configure.
  2. Site URL: Enter the base URL of your WordPress site (e.g., https://mysite.com).
  3. WordPress username: Enter your WordPress username.
  4. Application password: Provide an Application Password for your WordPress user.

    Note: To create an Application Password, click your user avatar in the top right corner of your WordPress dashboard, scroll to the bottom, and create an Application Password.

  5. Custom server URL override (Optional): By default, the CLI connects to the standard default server path (/wp-json/mcp/mcp-adapter-default-server). You can override this if your setup requires a custom endpoint.

Non-Interactive (Automation) Mode

You can completely bypass the interactive prompts by passing your details via command-line flags. This is perfect for CI/CD pipelines or automated setup scripts.

| Flag | Full Name | Description | | :--- | :--- | :--- | | -t | --tool | The AI client identifier (e.g., cline, windsurf, cursor, zed, goose, continue, cody) | | -s | --siteUrl | The base URL of your WordPress site | | -u | --username | Your WordPress username | | -p | --password | Your Application Password | | -c | --customUrl | Optional custom endpoint URL override | | -f | --force | Skip the "Overwrite?" confirmation if a configuration already exists | | | --cursor-level | global or project (Used only when -t cursor is selected) |

Example:

npx blockish-mcp-cli -t cline -s https://example.com -u admin -p "secretpass123" --force

Security Warning

Your Application Password is required to authenticate your AI client with your WordPress site. This CLI tool safely writes this password into the configuration files of the AI client you select.

Important: The configuration files are stored locally on your machine in plaintext. Treat these configuration files as sensitive secrets.

How it works under the hood

Depending on your selected AI client, this CLI uses one of three approaches:

  1. JSON Config Merging: For tools like Claude Desktop, Cursor, and Antigravity, the CLI safely parses the client's local JSON configuration file and merges the MCP server details into the mcpServers object without overwriting your existing tools.
  2. Command Spawning: For tools like Claude Code and Codex, the CLI executes their respective native configuration commands (e.g. claude mcp add) to add the server. If the native CLI is not found on your system, it provides a handy copy-paste fallback block for manual configuration.
  3. Manual Instructions: For ChatGPT Desktop, which requires a remote HTTPS URL rather than a local configuration file, the CLI outputs clear copy-paste instructions for adding the server directly inside the ChatGPT app settings.

License

ISC