Bifrost turns 1! Get 30% off annual plans with code
HAPPYBIRTHDAY

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:

Copied!
https://nativephp.com/api/mcp/message

Quick connect#

Claude Code#

Copied!
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:

Copied!
{
"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:

Copied!
{
"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/camera or mobile/4/edge-components/button)
  • get_navigation — the sidebar for a platform and version
  • list_edge_components — list EDGE / SuperNative UI components for a platform (defaults to latest mobile) so agents build native UI via Blade EDGE components
  • search_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.