- Getting Started
- Architecture
- The Basics
- Digging Deeper
-
EDGE Components
- Introduction
- Accordion
- Activity Indicator
- Badge
- Bottom Navigation
- Bottom Sheet
- Button
- Button Group
- Canvas
- Carousel
- Checkbox
- Chip
- Column
- Divider
- Floating Action Button
- Gesture Area
- Icon
- Image
- Lazy Grid
- Layout & Styling
- List
- Menus
- Modal
- Pressable
- Progress Bar
- Radio Group
- Refreshable
- Row
- Scroll View
- Select
- Shapes
- Side Navigation
- Slider
- Spacer
- Stack
- Tab Row
- Text
- Text Input
- Toggle
- Top Bar
- Virtual List
- Web View
- Plugins
- Testing
- Publishing Your App
MCP Docs Server
The full NativePHP documentation — for both Mobile and Desktop — is available over MCP. Agents such as Claude Code, Cursor, and Copilot can search and read the docs while they work, instead of relying on training-data memory alone.
It's hosted by NativePHP. There's nothing to install and no API key to create — just point your agent at this URL:
https://nativephp.com/api/mcp/message
Quick connect#
Claude Code#
claude mcp add --transport http nativephp-docs https://nativephp.com/api/mcp/message
Or commit .mcp.json to your repo so the whole team picks it up:
{ "mcpServers": { "nativephp-docs": { "type": "http", "url": "https://nativephp.com/api/mcp/message" } }}
Cursor#
Create .cursor/mcp.json in your project, or ~/.cursor/mcp.json to enable it everywhere:
{ "mcpServers": { "nativephp-docs": { "type": "http", "url": "https://nativephp.com/api/mcp/message" } }}
What your agent can do#
Once connected, your agent gets these tools:
search_docs— full-text search across every platform and version (use this for current Mobile v4 docs)get_page— fetch a full page by path (e.g.mobile/4/plugins/core/cameraormobile/4/edge-components/button)get_navigation— the sidebar for a platform and versionlist_edge_components— list EDGE / SuperNative UI components for a platform (defaults to latest mobile) so agents build native UI via Blade EDGE componentssearch_plugins— search the public plugin marketplace (where Mobile v3+ native APIs live)get_plugin— fetch one marketplace plugin by composer name
Pair it with Laravel Boost#
This MCP tells your agent what NativePHP can do. Laravel Boost tells it about your application — routes, models, config, and package versions. Running both together works better than either alone.
More clients and details#
For VS Code / Copilot, mcp-remote, REST mirrors, rate limits, and the full client matrix, see the Docs MCP Server page.
in no time