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

@knowledgebuilders/blockversity-linkedin-mcp

v0.3.0

Published

A Model Context Protocol (MCP) server for the Blockversity LinkedIn Community integration.

Readme

Blockversity LinkedIn MCP Server

A Model Context Protocol (MCP) server for the Blockversity LinkedIn Community integration.

Installation

npx -y @knowledgebuilders/blockversity-linkedin-mcp

Setup

This package is configured with a WordPress access token.

  1. Open the MCP Connection page in WordPress admin.
  2. Generate an MCP token.
  3. Copy the generated config snippet for Codex, Claude Code, or OpenCode.

Codex

Add this to ~/.codex/config.toml:

[mcp_servers.blockversity-linkedin]
command = "npx"
args = ["-y", "@knowledgebuilders/blockversity-linkedin-mcp"]

[mcp_servers.blockversity-linkedin.env]
WP_BASE_URL = "https://community.knowledgebuilders.app"
WP_BV_ACCESS_TOKEN = "YOUR_GENERATED_TOKEN"

Or add it with the CLI:

codex mcp add blockversity-linkedin --env WP_BASE_URL=https://community.knowledgebuilders.app --env WP_BV_ACCESS_TOKEN=YOUR_GENERATED_TOKEN -- npx -y @knowledgebuilders/blockversity-linkedin-mcp

Claude Code

Add this to .mcp.json:

{
  "mcpServers": {
    "blockversity-linkedin": {
      "command": "npx",
      "args": ["-y", "@knowledgebuilders/blockversity-linkedin-mcp"],
      "env": {
        "WP_BASE_URL": "https://community.knowledgebuilders.app",
        "WP_BV_ACCESS_TOKEN": "YOUR_GENERATED_TOKEN"
      }
    }
  }
}

OpenCode

Add this to opencode.json in your project root:

{
  "mcp": {
    "blockversity-linkedin": {
      "type": "local",
      "command": ["npx", "-y", "@knowledgebuilders/blockversity-linkedin-mcp"],
      "environment": {
        "WP_BASE_URL": "https://community.knowledgebuilders.app",
        "WP_BV_ACCESS_TOKEN": "YOUR_GENERATED_TOKEN"
      },
      "enabled": true
    }
  }
}

CLI Commands

whoami

Verify the configured token:

WP_BASE_URL=https://community.knowledgebuilders.app \
WP_BV_ACCESS_TOKEN=YOUR_GENERATED_TOKEN \
npx -y @knowledgebuilders/blockversity-linkedin-mcp whoami

serve

Start the MCP server directly:

WP_BASE_URL=https://community.knowledgebuilders.app \
WP_BV_ACCESS_TOKEN=YOUR_GENERATED_TOKEN \
npx -y @knowledgebuilders/blockversity-linkedin-mcp serve

WordPress Configuration

The WordPress plugin provides:

  • MCP token generation and revocation
  • ready-made Codex, Claude Code, and OpenCode config snippets
  • a public package config endpoint at /wp-json/bv-auth/v1/mcp/config

The public config endpoint now advertises token-based setup only.

Troubleshooting

Codex is not reading my config

Codex uses ~/.codex/config.toml, not ~/.codex/config.json.

Token stopped working

Generate a new token from the WordPress MCP Connection page and replace WP_BV_ACCESS_TOKEN in your config.

Revoke access

Use the Active MCP Tokens table in WordPress admin to revoke any token immediately.

License

MIT