Stylemcp MCP Server

Brand rules for AI outputs. Validate and rewrite text to match your brand voice.

Local serverstdio

What is the Stylemcp MCP server?

Brand rules for AI outputs. Validate and rewrite text to match your brand voice. The stylemcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

Executable brand rules for AI models and agents. Keep every AI-generated message on-brand.

StyleMCP validates and rewrites AI-generated text to match your brand voice. Use it as:

Its toolset

Everything the assistant can do here goes through one of these:

  • Method — Endpoint
  • POST — /api/validate
  • GET — /api/packs
  • validate_text — Validate text against brand rules
  • rewrite_to_style — Rewrite text to match brand voice
  • get_voice_rules — Get voice and tone guidelines
  • get_copy_patterns — Get approved copy patterns
  • get_cta_rules — Get CTA guidelines
  • get_tokens — Get design tokens
  • list_packs — List available style packs
  • Manual — The Manual tool exposed by this server
  • Vocabulary — The Vocabulary tool exposed by this server

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at stylemcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Configuration

You will need 2 environment variables: STYLEMCP_API_KEY, GITHUB_WEBHOOK_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Stylemcp's toolset — Method, POST, GET and 11 more — is a fair guide to whether it matches your workflow. It is maintained by 3DUNLMTD; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Stylemcp.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the stylemcp mcp server does with a few real requests.

Available tools

ToolWhat it does
MethodEndpoint
POST/api/validate
GET/api/packs
validate_textValidate text against brand rules
rewrite_to_styleRewrite text to match brand voice
get_voice_rulesGet voice and tone guidelines
get_copy_patternsGet approved copy patterns
get_cta_rulesGet CTA guidelines
get_tokensGet design tokens
list_packsList available style packs
ManualThe Manual tool exposed by this server.
VocabularyThe Vocabulary tool exposed by this server.
PatternsThe Patterns tool exposed by this server.
CTAsThe CTAs tool exposed by this server.

How to install the Stylemcp MCP server

{
  "mcpServers": {
    "stylemcp": {
      "command": "npx",
      "args": ["-y", "stylemcp"],
      "env": {
        "STYLEMCP_API_KEY": "your-value",
        "GITHUB_WEBHOOK_SECRET": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
STYLEMCP_API_KEYCredential the server authenticates with.Yes
GITHUB_WEBHOOK_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Stylemcp to Method.
  • Use Stylemcp to POST.
  • Use Stylemcp to GET.

Frequently asked questions

It connects Stylemcp to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Method, POST, GET, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Stylemcp directly.