drio
Open app

Integration App MCP Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

Integration App MCP Server is an implementation of the Model Context Protocol (MCP) server that exposes tools powered by Integration App, allowing users to manage and utilize various tools within their applications.

To use the Integration App MCP Server, you need to install Node.js, configure actions in your Integration App workspace, and provide necessary environment variables such as the Integration App token and integration key. Detailed instructions can be found in the Using Tools guide.

  • Exposes tools from Integration App for various applications. - Supports multiple integrations through separate server instances. - Easy configuration with environment variables.
  1. Integrating various tools into applications using the MCP framework.
  2. Managing and utilizing tools for specific integrations like HubSpot.
  3. Testing and validating tool availability through the server.

Add to your AI client

Use these steps to connect Integration App MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "integration-app-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-integration-app-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "integration-app-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-integration-app-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "integration-app-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-integration-app-mcp-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "integration-app-mcp-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-integration-app-mcp-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "integration-app-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-integration-app-mcp-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "integration-app-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-integration-app-mcp-server-mcp-mirror"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol (MCP)?

MCP is a protocol that allows applications to expose and manage tools effectively.

How do I configure the server?

You need to set up environment variables and provide the necessary integration tokens as described in the documentation.

Can I use multiple integrations?

Yes, you can create multiple server instances or modify the code to handle multiple integrations.