Complete reference for all MyBB MCP server tools available in the mybb_mcp server.
The MyBB MCP server provides 102 tools across 15 categories for comprehensive MyBB forum management through Claude Code.
| Category | Tools | Description |
|---|---|---|
| Templates | 9 | Template set management, read/write, batch operations, find/replace |
| Themes & Stylesheets | 6 | Theme and stylesheet CRUD operations |
| Plugins | 15 | Plugin scaffolding, lifecycle, hooks discovery, analysis |
| Forums | 5 | Forum CRUD operations and hierarchy management |
| Threads | 6 | Thread CRUD operations, moving, status changes |
| Posts | 5 | Post CRUD operations and editing |
| Users | 6 | User management, groups, banning |
| Moderation | 8 | Moderation actions and logging |
| Search | 4 | Content search across posts, threads, users |
| Admin & Settings | 11 | Settings management, cache control, board statistics |
| Tasks | 5 | Scheduled task management and logging |
| Disk Sync | 5 | Template/stylesheet disk synchronization |
| Server Orchestration | 5 | Development server lifecycle and log querying |
| Language Validation | 3 | Plugin language file validation and stub generation |
| Database | 1 | Direct database queries (read-only) |
Total: 102 tools
Templates:
mybb_list_template_sets- List all template setsmybb_read_template- Read template contentmybb_write_template- Update template contentmybb_template_find_replace- Bulk find/replace across templates
Plugins:
mybb_create_plugin- Generate plugin scaffoldmybb_list_hooks- List available hooksmybb_plugin_install- Full plugin installation with lifecyclemybb_plugin_status- Check plugin state
Content Management:
mybb_forum_list- List all forumsmybb_thread_create- Create new threadmybb_post_create- Create new postmybb_search_posts- Search post content
Administration:
mybb_setting_get/mybb_setting_set- Manage board settingsmybb_cache_rebuild- Rebuild cachesmybb_stats_board- Board statistics
Server Orchestration:
mybb_server_start- Start development servermybb_server_stop- Stop development servermybb_server_status- Check server statusmybb_server_logs- Query server logs with filtering
Language Validation:
mybb_lang_validate- Validate plugin language filesmybb_lang_generate_stub- Generate missing definitionsmybb_lang_scan_usage- Scan files for language usage
Each tool page includes:
- Description - What the tool does
- Parameters - Parameter name, type, required/optional, default value
- Returns - Return format and structure
- Examples - Usage examples
- Notes - Behavioral details and caveats
string- Text valueint- Integer numberbool- Boolean (true/false)array- List of values (JSON format)object- Key-value object (JSON format)
- REQUIRED - Must be provided
- optional - Can be omitted
- default=X - Optional with default value
- Template Set IDs:
-2= master templates,-1= global templates,≥1= custom template sets - Forum/Thread/Post IDs:
0or omitted = not applicable - Limits: Many tools use
default=25, max=100for pagination
Browse by category:
- Templates - Template management
- Themes & Stylesheets - Visual design
- Plugins - Plugin development
- Forums/Threads/Posts - Content management
- Users & Moderation - User management
- Search - Content search
- Admin & Settings - Configuration
- Tasks - Scheduled tasks
- Disk Sync - File synchronization
- Server Orchestration - Development server management
- Language Validation - Plugin language validation
- Database - Direct queries
See also: Getting Started | Plugin Manager | Architecture