Integration App MCP Server (SSE)
This is a remote implementation of the MCP (Model Context Protocol) server that exposes tools powered by Integration App. It allows clients to connect and access tools from active connections, using the MCP SSE transport.
See a list of MCP Clients here
- Example Clients
To implement your own client, see our example AI Chat Agent:
- AI Chat Agent (MCP Client application)
Prerequisites
- Node.js (v14 or higher)
- npm or yarn
- An Integration App account with a valid JWT token
Installation
Clone the repository:
git clone https://github.com/integration-app/mcpservice cd mcpservice
Install dependencies:
npm install
Build the project:
npm run build
Configuration
Local Development
To run the server locally, start it with:
npm start
The server will run on http://localhost:3000
.
Deployment
To deploy the server to a production environment (e.g., Heroku), follow these steps:
Ensure your environment variables are set:
PORT
: The port on which the server will run (default: 3000)NODE_ENV
: Set toproduction
for production environments
Deploy your application using your preferred hosting service (e.g., Heroku, AWS, etc.).
Once deployed, your server will be accessible at a URL like:
https://your-app-name.herokuapp.com/
Connection URL
To connect to the MCP server, use the following URL format:
https://your-app-name.herokuapp.com/sse?token=YOUR_TOKEN
Or, if the server is running locally:
http://localhost:3000/sse?token=YOUR_TOKEN
Cursor Configuration
To use this server with Cursor, update your ~/.cursor/mcp.json
file:
{
"mcpServers": {
"integration-app": {
"url": "https://your-app-name.herokuapp.com/sse?token=YOUR_TOKEN"
}
}
}
Restart Cursor for the changes to take effect.
Claude Configuration
Anthropic only allows SSE MCP tranports to Claude with MAX plan or higher. To use this server with Claude, update your ~/claude_desktop_config.json
file:
{
"mcpServers": {
"integration-app": {
"url": "https://your-app-name.herokuapp.com/sse?token=YOUR_TOKEN"
}
}
}
MCP Information
- The server fetches tools from all active connections associated with the provided token.
- The server supports both SSE (Server-Sent Events) and Streamable HTTP transports.
Troubleshooting
- Ensure your JWT token is valid and has the necessary permissions.
- Check server logs for any errors or issues during startup or connection attempts.
- Verify that your deployment environment has the correct environment variables set.
Integration App MCP Server
Project Details
- integration-app/mcpservice
- Last Updated: 5/13/2025
Recomended MCP Servers
Allows Honeycomb Enterprise customers to use AI to query and analyze their data, alerts, dashboards, and more; and...
MCP server implementation for Rollbar API integration
An MCP(Model Context Protocol) Server for retrieving and sharing your bash/zsh history with MCP Client (Cursor, Claude etc.)
Model Context Protocol server for OpenStreetMap data
用于与万智牌中文卡查大学院废墟(sbwsz.com)API交互的MCP服务端
A NL2SQL plugin based on FocusSearch keyword parsing, offering greater accuracy, higher speed, and more reliability!

Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It...