Releases: Launchery/max_docs_mcp
Releases · Launchery/max_docs_mcp
v2.0.0 — Code Examples, Enhanced Search, MCP Prompts
New Features
🔧 get_code_example tool
8 production-ready code examples with tag-based search:
send-message— Send a text messagesend-buttons— Interactive message with inline buttonshandle-callback— Handle button press callbackswebhook-setup— Register webhook for updatesmini-app-init— Initialize MAX Bridge in mini-appupload-file— Upload and send an imagebridge-storage— Read/write persistent data via Bridgeerror-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 patternsbuild-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
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 buildThen 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