MCP Max Messenger MCP Server

MCP server for MAX Messenger — Russian national messenger by VK with 75M+ users. 21 tools: send and read messages, HTML/Markdown formatting, 5 button

Remote serverstreamable-httpPython

What is the MCP Max Messenger MCP server?

If you already use MCP Max Messenger, the mcp max messenger mcp server is the piece that lets your assistant work with it directly. MCP server for MAX Messenger — Russian national messenger by VK with 75M+ users. 21 tools: send and read messages, HTML/Markdown formatting, 5 button types (callback, link, contact, geo, message), send media (photo/video/audio/file).

What the server does

Connect AI clients (Claude Desktop, Cursor, n8n, and any MCP-compatible app) to MAX: send and read messages, manage chats and members, send media, handle button presses, format with HTML/Markdown — all through the open Model Context Protocol standard.

  • 🇷🇺 National messenger mandated for pre-installation on all smartphones in Russia (September 2025)
  • 📱 75M+ registered users
  • 🏢 Recommended by the Ministry of Digital Development for government agencies and large enterprises
  • 🤖 Full Bot API with official SDKs: TypeScript, Python, Go, Java, PHP

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Authorization — Token passed as Authorization: — no Bearer prefix
  • Prerequisites — The Prerequisites tool exposed by this server
  • Messages — The Messages tool exposed by this server
  • Media — The Media tool exposed by this server
  • Chats — The Chats tool exposed by this server
  • Members — The Members tool exposed by this server
  • Events — The Events tool exposed by this server

Credentials and setup notes

Configuration is passed through the environment: MAX_TOKEN, YOUR_BOT_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 18+ - A MAX bot token (create a bot at max.ru)

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP Max Messenger's toolset — Authorization, Prerequisites, Messages and 4 more — is a fair guide to whether it matches your workflow. It is maintained by woyaxnini; 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.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
AuthorizationToken passed as Authorization: <token> — **no Bearer prefix**
PrerequisitesThe Prerequisites tool exposed by this server.
MessagesThe Messages tool exposed by this server.
MediaThe Media tool exposed by this server.
ChatsThe Chats tool exposed by this server.
MembersThe Members tool exposed by this server.
EventsThe Events tool exposed by this server.

How to install the MCP Max Messenger MCP server

{
  "mcpServers": {
    "max-messenger": {
      "command": "npx",
      "args": ["-y", "@woyax/mcp-max-messenger"],
      "env": {
        "MAX_TOKEN": "YOUR_BOT_TOKEN"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js 18+ - A MAX bot token (create a bot at max.ru)
VariableDescriptionRequired
MAX_TOKENCredential the server authenticates with.Yes
YOUR_BOT_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Max Messenger to Authorization.
  • Use MCP Max Messenger to Prerequisites.
  • Use MCP Max Messenger to Messages.

Frequently asked questions

It connects MCP Max Messenger to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Authorization, Prerequisites, Messages, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Max Messenger directly.