home / mcp / integrator mcp server
Integrator MCP Server
Configuration
View docs{
"mcpServers": {
"boostspace-integrator-mcp-server": {
"command": "npx",
"args": [
"-y",
"@boostspace/integrator-mcp-server"
],
"env": {
"INTEGRATOR_TEAM": "<your-team-id>",
"INTEGRATOR_API_KEY": "<your-api-key>"
}
}
}
}You can turn your Integrator automation workflows into callable tools for AI assistants. This MCP server connects to your Integrator account, exposes On-Demand scenarios as usable tools, and returns structured results so AI systems can interpret outputs effectively.
You use this MCP server with an MCP client to enable AI assistants to trigger and interact with your Integrator automation workflows. The server parses input parameters for each On-Demand scenario, presents meaningful parameter descriptions to the AI, invokes the appropriate scenario with the required values, and returns the results as structured JSON for easy interpretation. To get started, configure the MCP client with the Integrator MCP server entry and provide your API key and team information as needed.
Prerequisites you need to have before starting:
- NodeJS installed on your machine.
- An MCP client such as Claude Desktop App.
- An Integrator API Key with the scopes scenarios:read and scenarios:run.
Install and configure the MCP server in your client by adding the following to your client configuration under the mcpServers section:
{
"mcpServers": {
"integrator": {
"command": "npx",
"args": ["-y", "@boostspace/integrator-mcp-server"],
"env": {
"INTEGRATOR_API_KEY": "<your-api-key>",
"INTEGRATOR_TEAM": "<your-team-id>"
}
}
}
}