J

mcp-server

...
Created 1/14/2025byintegration-app

Language:

JavaScript

Stars:

15

Forks:

3

Integration App MCP Server

Overview

This is an implementation of the Model Context Protocol (MCP) server that exposes tools powered by Integration App.

Managing Tools

This server uses Actions defined in an Integration App workspace as tools. To understand how this works and how to effectively manage tools for each application, please refer to the Using Tools guide.

Running the server

  1. Install node.js
  2. Configure some actions in your Integration App workspace
  3. Get Integration App token from your Workspace Settings page or generate using your Workspace Key and Secret (Authentication Guide).

You need to provide two environment variables to the server:

  • INTEGRATION_APP_TOKEN - token for accessing Integration App API
  • INTEGRATION_KEY - key of the integration you want to use tools for

This server exposes tools from one integration at a time. If you want to expose tools from multiple integrations, you can create multiple servers or modify the code to iterate over multiple integrations.

Here is an example of claude_desktop_config.json file with the server configured:

{
  "mcpServers": {
    "integration-app-hubspot": {
      "command": "npx",
      "args": ["-y", "@integration-app/mcp-server"],
      "env": {
         "INTEGRATION_APP_TOKEN": "",
         "INTEGRATION_KEY": "hubspot"
      }
    }
  }
}

Testing

To understand if everything works as expected, you can ask Claude what tools are available:

Claude Test

Last updated: 4/11/2025

Publisher info

integration-app's avatar

Integration.app

Self-service Software & Data Integration

7
followers
0
following
20
repos

More MCP servers built with JavaScript

mcp-server-semgrep

MCP Server Semgrep is a [Model Context Protocol](https://modelcontextprotocol.io) compliant server that integrates the powerful Semgrep static analysis tool with AI assistants like Anthropic Claude. It enables advanced code analysis, security vulnerability detection, and code quality improvements directly through a conversational interface.

By Szowesgad9
protonmail-mcp

This MCP server provides email sending functionality using Protonmail's SMTP service. It allows both Claude Desktop and Cline VSCode extension to send emails on your behalf using your Protonmail credentials.

By amotivv6
agentql-mcp

Model Context Protocol server that integrates AgentQL's data extraction capabilities.

By tinyfish-io45