mcp-server
by: integration-app
mcp server
📌Overview
Purpose: To implement a server based on the Model Context Protocol (MCP) that enables the usage of tools from the Integration App.
Overview: This MCP server integrates with the Integration App to expose various tools defined within an Integration App workspace. It facilitates streamlined management and accessibility of these tools for applications.
Key Features:
-
Integration with MCP: Provides a standardized protocol for managing and accessing tools, enhancing interoperability across different applications.
-
Tool Management: Utilizes Actions from an Integration App workspace, allowing for effective control and utilization of tools, as outlined in the accompanying documentation.
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
- Install node.js
- Configure some actions in your Integration App workspace
- 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 APIINTEGRATION_KEY
- key of the integration you want to use tools for
This server exposes tools from one integration at a time. To expose tools from multiple integrations, create multiple servers or modify the code to iterate over multiple integrations.
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": "<your-integration-app-token>",
"INTEGRATION_KEY": "hubspot"
}
}
}
}
Testing
To check if everything works as expected, you can ask Claude what tools are available.