Skip to main content
Glama
bridevmx

Mobbin Remote MCP Server

by bridevmx

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 dynamic Authorization: Bearer <API_KEY> headers per request. No hardcoded credentials.

  • OpenCode Ready: Compatible with OpenCode's mcp remote server configuration.

Related MCP server: OpenAPI MCP Server

Quick Start (Local / Node.js)

  1. Clone the repository and install dependencies:

    npm install
  2. Copy .env.example to .env and set your Mobbin API Key:

    cp .env.example .env
  3. Start the server:

    npm start

Deploy with Docker

Build and run using Docker Compose:

docker compose up -d --build

Or deploy directly to Easypanel / Coolify:

  • Repository: https://github.com/bridevmx/mobbin-mcp-server

  • Build Type: Dockerfile or Docker Compose

  • Port: 3000

  • Environment 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

F
license - not found
-
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    A generic MCP server that dynamically converts OpenAPI-defined REST APIs into tools for LLMs like Claude. It supports multiple authentication methods and transport protocols, enabling seamless interaction with any OpenAPI-compliant API.
    17
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    A standalone MCP server that exposes API endpoints as tools for AI assistants by proxying requests to a target API defined in an OpenAPI specification. It supports various authentication methods and utilizes Server-Sent Events (SSE) to facilitate integration with clients like Claude and ChatGPT.

View all related MCP servers

Related MCP Connectors

  • MCP server for Appcircle mobile CI/CD platform.

  • Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.

  • MCP (Model Context Protocol) server for Appwrite

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bridevmx/mobbin-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server