MCP.so
Sign In

Integration App MCP Server

@integration-app

About Integration App MCP Server

MCP Server for Membrane

Basic information

Category

Other

License

ISC

Runtime

node

Transports

stdio

Publisher

integration-app

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "mcp-server-integration-app": {
      "command": "docker",
      "args": [
        "build",
        "-t",
        "membrane-mcp-server",
        "."
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Membrane MCP Server?

The Membrane MCP Server is a Model Context Protocol (MCP) server that provides actions for connected integrations on Membrane as tools. It is intended for developers building AI agents that need to interact with third-party services through Membrane.

How to use Membrane MCP Server?

Install Node.js v18+, clone the repository, run npm install and npm run build. For local development, run npm run dev. Connect using SSE (deprecated) or Streamable HTTP (recommended) transports, authenticating with a Membrane access token via query parameter or Authorization header.

Key features of Membrane MCP Server

  • Provides actions from connected Membrane integrations as MCP tools.
  • Supports both SSE (deprecated) and Streamable HTTP (recommended) transports.
  • Offers static mode (all tools) and dynamic mode (selective tool enabling).
  • Allows filtering tools by specific integrations via apps query parameter.
  • Includes experimental chat session management for persistent conversations.
  • Can be deployed via Docker or any cloud hosting service.

Use cases of Membrane MCP Server

  • Build AI agents that can read and send emails via Gmail integration.
  • Create chatbots that manage calendar events using Google Calendar tools.
  • Enable AI assistants to search and retrieve documents from Google Docs.
  • Develop applications that orchestrate multiple integrations based on user queries.

FAQ from Membrane MCP Server

How do I authenticate?

Provide a Membrane access token either as a query parameter ?token=ACCESS_TOKEN or via Authorization: Bearer ACCESS_TOKEN header.

What is the difference between static and dynamic mode?

In static mode, the server returns all available tools for all connected integrations. In dynamic mode, only the enable-tools tool is returned, allowing selective enablement of specific tools per session.

How can I get tools for a specific integration?

Pass the apps query parameter with a comma-separated list of integration names, for example /mcp?apps=google-calendar,google-docs in static mode.

What runtime does this require?

Node.js v18 or higher.

What transports are supported?

SSE (Server-Sent Events) at /sse (deprecated) and Streamable HTTP at /mcp (recommended).

Comments

More Other MCP servers