Integration App MCP
This MCP server implementation allows users to manage and expose actions as tools from their Integration App workspace through the Model Context Protocol.
What is Integration App MCP?
Integration App MCP is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to this mcp server implementation allows users to manage and expose actions as tools from their integration app workspace through the model context protocol.
This MCP server implementation allows users to manage and expose actions as tools from their Integration App workspace through the Model Context Protocol.
This server falls under the APIs and Business Applications categories on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- This MCP server implementation allows users to manage and ex
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx integration-app-mcp-serverConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Integration App MCP
The Integration App MCP Server connects your Membrane workspace to any MCP-compatible AI assistant, exposing all your configured integration actions as callable tools. It supports both static mode (all tools returned at once) and dynamic mode (selective tool activation on demand) to keep LLM context manageable. Developers use it to let Claude or other AI assistants trigger Gmail actions, Google Calendar events, or any other integration wired up in Membrane without building custom API bridges.
Prerequisites
- Node.js v18 or higher installed
- An active Membrane account at getmembrane.com with at least one integration configured
- A Membrane Access Token generated from the Membrane authentication settings
- An MCP-compatible client such as Claude Desktop or Cursor
Clone and build the server
Clone the repository, install dependencies, and compile the TypeScript source.
git clone https://github.com/membranehq/mcp-server.git
cd mcp-server
npm install
npm run buildGenerate a Membrane Access Token
Log in to your Membrane account and navigate to the authentication section to create a personal access token. Keep this value secret — it authorizes the MCP server to act on your behalf.
Choose your connection mode
The server supports two modes. Static mode (default) returns all your integration tools immediately. Dynamic mode (add ?mode=dynamic) activates tools selectively, which is better for large workspaces where listing all tools would overwhelm the LLM context window.
Configure your MCP client
Add the Membrane MCP server to your client configuration. The server is accessed over HTTP/Streamable HTTP using your access token as a Bearer credential in the Authorization header.
{
"mcpServers": {
"integration-app": {
"command": "node",
"args": ["<path-to-cloned-repo>/dist/index.js"],
"env": {
"ACCESS_TOKEN": "<your-membrane-access-token>"
}
}
}
}Restrict to specific integrations (optional)
Use the apps query parameter to expose only the tools for specific integrations, for example Google Calendar and Gmail, rather than every integration in your workspace.
# Append to your server URL
?apps=google-calendar,gmailVerify tools are loading
Start your MCP client and ask the AI assistant to list the available tools. You should see actions from your configured Membrane integrations listed as callable MCP tools.
Integration App MCP Examples
Client configuration
Claude Desktop configuration using the locally built server with an access token passed as an environment variable.
{
"mcpServers": {
"integration-app": {
"command": "node",
"args": ["/path/to/mcp-server/dist/index.js"],
"env": {
"ACCESS_TOKEN": "your_membrane_access_token_here"
}
}
}
}Prompts to try
Example prompts you can use once the server is connected and your integrations are configured in Membrane.
- "List all the tools available from my Membrane integrations"
- "Create a Google Calendar event for tomorrow at 2pm titled Team Sync"
- "Send a Gmail draft to [email protected] with the subject Weekly Update"
- "Show me the available actions for my Slack integration"
- "Enable only the Google Docs tools and help me create a new document"Troubleshooting Integration App MCP
AI assistant reports no tools available or an empty tool list
Verify your ACCESS_TOKEN is valid and that you have at least one integration configured in your Membrane workspace. Try switching from dynamic mode to static mode by removing the ?mode=dynamic parameter.
Authorization errors or 401 responses when calling tools
Regenerate your Membrane Access Token from the Membrane authentication settings and update it in your MCP client configuration. Ensure the token is passed as a Bearer token in the Authorization header.
Too many tools overwhelm the LLM context window
Switch to dynamic mode by appending ?mode=dynamic to the server URL, or restrict to specific integrations using the ?apps= parameter (e.g., ?apps=google-calendar,gmail).
Frequently Asked Questions about Integration App MCP
What is Integration App MCP?
Integration App MCP is a Model Context Protocol (MCP) server that this mcp server implementation allows users to manage and expose actions as tools from their integration app workspace through the model context protocol. It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Integration App MCP?
Follow the installation instructions on the Integration App MCP GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Integration App MCP?
Integration App MCP works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Integration App MCP free to use?
Yes, Integration App MCP is open source and available under the ISC License license. You can use it freely in both personal and commercial projects.
Integration App MCP Alternatives — Similar APIs Servers
Looking for alternatives to Integration App MCP? Here are other popular apis servers you can use with Claude, Cursor, and VS Code.
Kong
★ 43.4k🦍 The API and AI Gateway
API Mega List
★ 5.4kThis GitHub repo is a powerhouse collection of APIs you can start using immediately to build everything from simple automations to full-scale applications. One of the most valuable API lists on GitHub—period. 💪
Fetch
★ 5.4kFetch web content and convert to markdown for AI consumption
Fusio
★ 2.1kSelf-Hosted API Management for Builders
Korean Law
★ 1.8k국가법령정보MCP v4.0 | 법제처 41개 API → 17개 MCP 도구. 법령·판례·조례 검색 + LLM 환각 방지 인용검증 + 조문 영향 그래프(impact_map) + 시점 비교 자동 diff(time_travel) + 시민 5단계 실행 가이드(action_plan) | 41 Korean legal APIs → 17 MCP tools
RuleGo
★ 1.5k⛓️RuleGo is a lightweight, high-performance, embedded, next-generation component orchestration rule engine framework for Go.
Browse More APIs MCP Servers
Explore all apis servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Integration App MCP in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Integration App MCP?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.