Mobbin Remote MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mobbin Remote MCP Serverfind onboarding flow examples from fintech apps"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Mobbin Remote MCP Server
A lightweight, Docker-ready Model Context Protocol (MCP) remote server that connects OpenCode (and other MCP clients) to the Mobbin REST API using API Keys.
Features
No OAuth browser flow required: Connects directly via Mobbin REST API Key.
Docker & Docker Compose: 1-click deployment on VPS (Easypanel, Coolify, Dokku, Portainer).
Security First: Supports passing API Keys via environment variables (
MOBBIN_API_KEY) or dynamicAuthorization: Bearer <API_KEY>headers per request. No hardcoded credentials.OpenCode Ready: Compatible with OpenCode's
mcpremote server configuration.
Related MCP server: MCP OAuth Server
Quick Start (Local / Node.js)
Clone the repository and install dependencies:
npm installCopy
.env.exampleto.envand set your Mobbin API Key:cp .env.example .envStart the server:
npm start
Deploy with Docker
Build and run using Docker Compose:
docker compose up -d --buildOr deploy directly to Easypanel / Coolify:
Repository:
https://github.com/bridevmx/mobbin-mcp-serverBuild Type: Dockerfile or Docker Compose
Port:
3000Environment Variable:
MOBBIN_API_KEY:sk_your_mobbin_api_key
OpenCode Integration
In your opencode.json (or ~/.config/opencode/opencode.json), configure Mobbin as a remote MCP server:
{
"mcp": {
"mobbin": {
"type": "remote",
"url": "https://your-vps-domain.com/sse",
"enabled": true,
"headers": {
"Authorization": "Bearer sk_your_mobbin_api_key"
}
}
}
}If MOBBIN_API_KEY is already set as an environment variable in your VPS deployment, you can omit the headers field:
{
"mcp": {
"mobbin": {
"type": "remote",
"url": "https://your-vps-domain.com/sse",
"enabled": true
}
}
}Endpoints
GET /health- Health check.GET /sse- MCP Server-Sent Events stream entrypoint.POST /messages?sessionId=...- MCP protocol message handler.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
The Remote MCP server acts as a standardized bridge between LLM applications (like Claude, ChatGPT, and Cursor) and external services, enabling AI agents to access external tools and resources. Its primary capability is providing a centralized search tool to discover other MCP servers and their respective tools. Unlike local implementations, it runs remotely with OAuth authentication and permission controls for security.
MCP server for Appcircle mobile CI/CD platform.
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA minimal, containerized MCP server that exposes a Streamable HTTP transport with API key authentication, allowing secure access to MCP endpoints.-
- AlicenseNot gradedqualityDmaintenanceA Node.js MCP server with custom OAuth 2.1 + PKCE authentication, enabling secure remote connections to LLMs like Claude and ChatGPT.193 npmMIT
- AlicenseAqualityBmaintenanceA minimal, secure MCP server for AI-assisted mobile development, enabling build, install, interact, and inspect Android/iOS apps.3311 npm9Apache 2.0
- FlicenseAqualityDmaintenanceMCP server that gives AI agents browser-based access to Mobbin for design research, screen discovery, and screenshot collection through automated browser control.4103-