🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

stylobridge

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylobridge

Air-gapped MCP document converter — Markdown/PDF to branded DOCX with audit logging

pipPyPI
Version
1.0.2
Weekly downloads
22
22.22%
Maintainers
1
Weekly downloads
 

StyloBridge

Enterprise-grade MCP document converter -- Markdown and PDF to professionally styled Word documents.

License: Proprietary CI Python 3.10+

What It Does

StyloBridge is an MCP server that converts Markdown and PDF files to professionally styled Word documents. It integrates with Claude Desktop, Cursor, and VS Code, applying your corporate brand templates automatically while enforcing licensing and logging every conversion for audit compliance.

Features

  • Markdown to DOCX -- Convert Markdown files to branded Word documents with optional table of contents
  • PDF to DOCX -- Extract and re-style PDF content into editable Word format
  • Style Guard Preprocessor -- Normalizes AI-generated Markdown (indentation, table captions, formatting) before conversion
  • Corporate Brand Templates -- Apply organization-wide fonts, colors, logos, and layouts automatically
  • Tier-Based Licensing -- RS256 JWT-based access control with seat management and hot rotation
  • Audit Logging -- Structured JSON-lines logs for every conversion, ready for Splunk, ELK, or Datadog

Installation

Individual (Developers)

Requires: Python 3.10+, uv

git clone https://github.com/blockpal1/Stylobridge.git
cd Stylobridge

Add StyloBridge to your Claude Desktop configuration:

Windows (%APPDATA%/Claude/claude_desktop_config.json):

macOS (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "stylobridge": {
      "command": "uv",
      "args": ["--directory", "/path/to/Stylobridge", "run", "python", "main.py"],
      "env": {
        "STYLOBRIDGE_LICENSE": "<your-license-token>",
        "TEMPLATE_DIR": "/path/to/Stylobridge/src/templates",
        "WORKSPACE_ROOT": "/path/to/your/documents"
      }
    }
  }
}

Team / Enterprise (Docker)

Requires: Docker

{
  "mcpServers": {
    "stylobridge": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-e", "STYLOBRIDGE_LICENSE=<your-license-token>",
        "-v", "/path/to/documents:/app/data",
        "-v", "/path/to/templates:/app/src/templates",
        "ghcr.io/blockpal1/stylobridge:latest"
      ]
    }
  }
}

Configuration

VariableRequiredDescription
STYLOBRIDGE_LICENSEYesRS256-signed JWT license token
TEMPLATE_DIRNoPath to corporate .docx brand templates (default: src/templates/)
WORKSPACE_ROOTNoRoot directory for all file I/O; paths outside this are rejected
LOG_LEVELNoLogging verbosity: DEBUG, INFO, WARNING, ERROR (default: INFO)

MCP Tools

ToolDescription
convert_to_docxConvert a Markdown or PDF file to a styled .docx document, with optional brand template and table of contents
list_templatesList all available corporate brand templates in the configured template directory
analyze_and_create_templateAnalyze an existing branded .docx file and extract its styles into a reusable Pandoc reference template

Pricing

PlanPriceIncludes
Individual$199/yearDocument conversion (Markdown and PDF to DOCX)
Team$1,495/yearEverything -- up to 25 users, brand templates, audit logging
Enterprise$4,995/yearEverything -- unlimited users

Visit github.com/blockpal1/Stylobridge for details.

License

Proprietary. A valid license token is required to use StyloBridge. See the Pricing section for available plans.

Keywords

branding

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts