Protolint MCP Server

A pluggable linter and fixer to enforce Protocol Buffer style and conventions.

Local serverstdioPython

What is the Protolint MCP server?

Protolint MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. A pluggable linter and fixer to enforce Protocol Buffer style and conventions.

What you get

protolint is the pluggable linting/fixing utility for Protocol Buffer files (proto2+proto3):

Setting it up

Installation goes through your MCP client rather than a global install: point it at protolint 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.

What the assistant can call

Once Protolint is connected, these are the calls the assistant has available:

  • Usage — For detailed documentation on how to use and integrate protolint's MCP server functionality, see the MCP documentation

Configuration and credentials

You will need 2 environment variables: PROTOLINT_MIRROR_HOST, PROTOLINT_MIRROR_REMOTE_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • 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.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the protolint mcp server does with a few real requests.

Choosing this one

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Protolint's toolset — Usage — is a fair guide to whether it matches your workflow. It is maintained by yoheimuta; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Protolint's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
UsageFor detailed documentation on how to use and integrate protolint's MCP server functionality, see the [MCP documentation](./mcp/README.md).

How to install the Protolint MCP server

{
  "mcpServers": {
    "protolint": {
      "command": "npx",
      "args": ["-y", "protolint"],
      "env": {
        "PROTOLINT_MIRROR_HOST": "your-value",
        "PROTOLINT_MIRROR_REMOTE_PATH": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
PROTOLINT_MIRROR_HOSTEndpoint or connection string the server talks to.Optional
PROTOLINT_MIRROR_REMOTE_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Protolint to Usage.

Frequently asked questions

It connects Protolint to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Usage) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Protolint directly.