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

braaand-mcp

v0.4.0

Published

MCP server for Braaand — exposes brand data, assets, and templates as tools for Claude

Downloads

556

Readme

braaand-mcp

MCP server for Braaand — exposes brand data, assets, templates, projects, and rendering as tools for Claude.

Install

npm install -g braaand-mcp

Setup

Add to Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "braaand": {
      "command": "braaand-mcp"
    }
  }
}

Shares credentials with the CLI — run braaand auth login first.

Tools

Identity

| Tool | Description | |------|-------------| | whoami | Return the authenticated identity and brand counts. |

Brands

| Tool | Description | |------|-------------| | list_brands | List all accessible brands. | | get_brand_info | Full brand dump: config + assets with URLs. | | update_brand | Update brand name/description. | | delete_brand | Owner-only. Requires confirmBrandId === brandId. |

Brand config & knowledge

| Tool | Description | |------|-------------| | get_brand_config | Colors, fonts, type styles, voice, logo system. | | update_brand_config | Partial config update (only changed fields). | | get_brand_knowledge | Structured knowledge sections. |

Assets

| Tool | Description | |------|-------------| | list_assets | All assets with direct URLs; optional type filter. | | get_asset | Asset metadata. | | upload_asset | Upload file (prefer filePath over base64). | | delete_asset | Delete an asset. |

Templates

| Tool | Description | |------|-------------| | list_templates | List brand templates. | | get_template | Full template definition. | | discover_templates | Agent-facing catalog. | | delete_template | Delete with usage-check safety. | | list_system_templates | System (brand-agnostic) templates. | | instantiate_template | Copy a system template into a brand. |

Projects & ad sets

| Tool | Description | |------|-------------| | list_projects | List campaigns for a brand. | | get_project | Project with all ad sets and ads. | | create_project | Create a project. | | update_project | Update project fields. | | delete_project | Cascades to all ad sets and ads. | | list_adsets | Ad sets within a project. | | get_adset | Ad set with all ads. | | create_adset | Create an ad set with optional ads. | | update_adset | Update ad set fields. | | delete_adset | Delete an ad set. |

Rendering

| Tool | Description | |------|-------------| | render | Render one ad, save PNG locally, return path. | | render_batch | Render every ad in an ad set across formats. |

Rendered PNGs are saved to ~/.braaand/renders/ by default. Use the outputPath/outputDir parameter to override.

More

See braaand.ai for full documentation.