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

balzac-mcp

v1.4.2

Published

MCP server for the Balzac AI content platform — give AI assistants native access to workspaces, keywords, articles, and more.

Readme

Balzac MCP Server

npm version License: MIT

MCP server for the Balzac AI content platform -- give AI agents native access to keyword research, article writing, and CMS publishing.

The Balzac MCP server implements the Model Context Protocol so that AI agents like Claude Desktop, OpenClaw, Claude Code, and any MCP-compatible client can manage your entire content pipeline through structured tool calls.


Quick Start

1. Get your API key

Log in to Balzac, go to Settings > API Keys, and generate a key.

2. Configure your MCP client

Add to your MCP configuration (Claude Desktop, OpenClaw, or any MCP-compatible host):

{
  "mcpServers": {
    "balzac": {
      "command": "npx",
      "args": ["-y", "balzac-mcp"],
      "env": {
        "BALZAC_API_KEY": "bz_your_api_key_here"
      }
    }
  }
}

For Claude Desktop, this file lives at ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).

3. Start using it

Once configured, your AI agent can directly call Balzac tools:

"Research keywords for my site and write an SEO article about the best opportunity"

"Write 3 articles about our top keywords and publish them as drafts to WordPress"

"Rewrite my latest article with a more professional tone"


Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | BALZAC_API_KEY | Yes | Your Balzac API key (starts with bz_) | | BALZAC_API_URL | No | API base URL (default: https://api.hirebalzac.ai/v1) |


Available Tools

Workspaces

| Tool | Description | |------|-------------| | list_workspaces | List all workspaces | | get_workspace | Get workspace details | | create_workspace | Create a workspace from a domain | | update_workspace | Update workspace settings | | delete_workspace | Delete a workspace |

Keywords

| Tool | Description | |------|-------------| | list_keywords | List keywords (filter by status) | | get_keyword | Get keyword details (volume, competition, intent, difficulty, GSC metrics) | | create_keyword | Add a keyword | | enable_keyword | Enable a keyword | | disable_keyword | Disable a keyword | | delete_keyword | Delete a keyword | | generate_keywords | Generate new keywords with AI (async) |

Suggestions

| Tool | Description | |------|-------------| | list_suggestions | List content suggestions | | get_suggestion | Get suggestion details | | generate_suggestions | Generate 10 new suggestions (1 credit) | | accept_suggestion | Accept and start writing (5 credits) | | reject_suggestion | Reject a suggestion |

Briefings

| Tool | Description | |------|-------------| | list_briefings | List briefings | | get_briefing | Get briefing details | | create_briefing | Create a briefing and start writing (5 credits) |

Articles

| Tool | Description | |------|-------------| | list_articles | List articles (filter by status, published) | | get_article | Get article details and content | | update_article | Update article metadata | | delete_article | Delete an article | | rewrite_article | Rewrite article content (3 credits) | | regenerate_article_picture | Regenerate main picture (1 credit) | | publish_article | Publish to an integration | | schedule_article | Schedule future publication | | export_article | Export as HTML, Markdown, or XML |

Competitors

| Tool | Description | |------|-------------| | list_competitors | List competitor domains | | create_competitor | Add a competitor | | delete_competitor | Remove a competitor |

Links

| Tool | Description | |------|-------------| | list_links | List reference links | | create_link | Add a reference link | | delete_link | Remove a link |

Settings

| Tool | Description | |------|-------------| | get_settings | Get workspace settings | | update_settings | Update workspace settings |

Tones of Voice

| Tool | Description | |------|-------------| | list_tones | List available tones | | get_tone | Get tone details |

Integrations

| Tool | Description | |------|-------------| | list_integrations | List publishing integrations | | get_integration | Get integration details | | create_integration | Create an integration (WordPress, Webflow, Wix, GoHighLevel, Webhook) | | update_integration | Update integration settings | | delete_integration | Delete an integration | | reconnect_integration | Re-test integration connection |


Credit Costs

| Action | Credits | |--------|---------| | Writing an article (accept suggestion or create briefing) | 5 | | Generating 10 new suggestions | 1 | | Rewriting an article | 3 | | Regenerating a picture | 1 |

If your account doesn't have enough credits, the tool returns an error with the required and available credit counts.


See Also


License

MIT