Skip to content

Releases: Launchery/max_docs_mcp

v2.0.0 — Code Examples, Enhanced Search, MCP Prompts

06 Apr 12:07

Choose a tag to compare

New Features

🔧 get_code_example tool

8 production-ready code examples with tag-based search:

  • send-message — Send a text message
  • send-buttons — Interactive message with inline buttons
  • handle-callback — Handle button press callbacks
  • webhook-setup — Register webhook for updates
  • mini-app-init — Initialize MAX Bridge in mini-app
  • upload-file — Upload and send an image
  • bridge-storage — Read/write persistent data via Bridge
  • error-handling — Error handling with retry and rate limiting

🔍 Enhanced search_docs

  • Filter by type: endpoint, model, guide, bridge, component
  • Filter by category: messages, chats, mini-apps, ui, etc.
  • Combine both filters with any query

💬 MCP Prompts (4 templates)

  • create-bot — Step-by-step bot creation (parameterized by language)
  • send-message-patterns — All message types and patterns
  • build-mini-app — Mini-app development guide (parameterized by app type)
  • debug-max-api — Error diagnosis and troubleshooting

Stats

  • 8 MCP tools (was 7)
  • 4 MCP prompts (new)
  • Resources with auto-completion

Full Changelog: v1.0.0...v2.0.0

v1.0.0 — First Public Release

04 Apr 22:52

Choose a tag to compare

max_docs_mcp v1.0.0

MCP server delivering MAX Platform documentation to AI coding agents.

What's Included

  • 29 MAX Bot API endpoints with full documentation
  • 26 data models for request/response handling
  • 20 guides across 8 categories (platform, chatbot, tutorials, SDK, mini-apps, channels, partners, legal)
  • MAX Bridge API: 6 objects + 17 events for mini-apps
  • 35 MAX UI components for building mini-app interfaces
  • 7 MCP tools: list_endpoints, get_endpoint, search_docs, list_guides, get_guide, get_bridge_api, get_component
  • Resource URIs via max-docs:// scheme for direct document access
  • Multi-client quickstart: Claude Desktop, Cursor, OpenCode, Codex, and any MCP-compatible client

Installation

git clone https://github.com/Launchery/max_docs_mcp.git
cd max_docs_mcp
npm install
npm run build

Then add to your MCP client config:

{
  "mcpServers": {
    "max-docs": {
      "command": "node",
      "args": ["/path/to/max_docs_mcp/dist/index.js"]
    }
  }
}

Full Changelog

See CHANGELOG.md