The Mobbin Agent Plugin packages Mobbin's hosted MCP server for Agent Plugins 1.0.0 clients. It helps agents find real-world UI screens, multi-step flows, and website sections from Mobbin's design library.
The package is a portable Agent Plugins 1.0.0 directory. Use the installation flow documented by your client:
- VS Code: install from
the marketplace, use Chat: Install Plugin From Source, or register a local checkout with
chat.pluginLocations. - Cursor: install from Customize, or load a local checkout
from
~/.cursor/plugins/local/. - GitHub Copilot:
use
copilot plugin install OWNER/REPOor the documented local/repository flow. - Kiro: use Powers → Add Custom Power.
- ChatGPT and Codex: install through OpenAI's plugin directory.
Claude Code is not an Agent Plugins-compatible client; use Mobbin's
claude mcp add setup instead.
On first use, the client opens a browser for OAuth authorization. You need a Mobbin account on a Pro, Team, or Enterprise plan. The plugin contains no API key or other credential.
- The
mobbinMCP server athttps://api.mobbin.com/mcpusing Streamable HTTP.
The root plugin.json and mcp.json are the only package configuration files required by the
Agent Plugins standard.
Mobbin provides these read-only MCP tools:
search_screens— UI screens.search_flows— multi-step user journeys such as onboarding and checkout.search_sections— website sections such as pricing pages, heroes, and footers.
Results include images, metadata, and links back to Mobbin.
mobbin-agent-plugin/
├── plugin.json
├── mcp.json
├── schemas/1.0.0/
│ ├── plugin.schema.json
│ └── mcp.schema.json
├── scripts/
│ └── validate.mjs
└── .github/workflows/validate.yml
Read the Mobbin MCP introduction for client setup and authorization details.