Multi-tenant MCP Server

Integrations

  • Provides deployment support for the MCP server, with instructions for configuring the server on Heroku's hosting platform

  • Supports running the MCP server, with compatibility for Node.js v14 or higher

集成应用程序 MCP 服务器 (SSE)

这是MCP(模型上下文协议)服务器的远程实现,用于公开由 Integration App 提供支持的工具。它允许客户端使用 MCP SSE 传输协议从活动连接中连接并访问工具。

点击此处查看 MCP 客户端列表

要实现您自己的客户端,请参阅我们的示例 AI 聊天代理:

先决条件

  • Node.js(v14 或更高版本)
  • npm 或 yarn
  • 具有有效 JWT 令牌的集成应用程序帐户

安装

  1. 克隆存储库:
    git clone https://github.com/integration-app/mcpservice cd mcpservice
  2. 安装依赖项:
    npm install
  3. 构建项目:
    npm run build

配置

本地开发

要在本地运行服务器,请使用以下命令启动它:

npm start

服务器将在http://localhost:3000上运行。

部署

要将服务器部署到生产环境(例如 Heroku),请按照以下步骤操作:

  1. 确保您的环境变量已设置:
    • PORT :服务器运行的端口(默认值:3000)
    • NODE_ENV :设置为production用于生产环境
  2. 使用您首选的托管服务(例如 Heroku、AWS 等)部署您的应用程序。
  3. 部署完成后,您可以通过以下 URL 访问您的服务器:
    https://your-app-name.herokuapp.com/

连接 URL

要连接到 MCP 服务器,请使用以下 URL 格式:

https://your-app-name.herokuapp.com/sse?token=YOUR_TOKEN

或者,如果服务器在本地运行:

http://localhost:3000/sse?token=YOUR_TOKEN

游标配置

要将此服务器与 Cursor 一起使用,请更新您的~/.cursor/mcp.json文件:

{ "mcpServers": { "integration-app": { "url": "https://your-app-name.herokuapp.com/sse?token=YOUR_TOKEN" } } }

重新启动 Cursor 以使更改生效。

克劳德配置

Anthropic 仅允许 SSE MCP 传输至 MAX 或更高版本的 Claude。要将此服务器与 Claude 一起使用,请更新您的~/claude_desktop_config.json文件:

{ "mcpServers": { "integration-app": { "url": "https://your-app-name.herokuapp.com/sse?token=YOUR_TOKEN" } } }

MCP信息

  • 服务器从与提供的令牌关联的所有活动连接中获取工具。
  • 该服务器支持 SSE(服务器发送事件)和可流式 HTTP 传输。

故障排除

  • 确保您的 JWT 令牌有效并具有必要的权限。
  • 检查服务器日志,查找启动或连接尝试期间出现的任何错误或问题。
  • 验证您的部署环境是否设置了正确的环境变量。
-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

代理服务器允许多个租户使用他们自己的隔离凭据连接到集成应用程序的 MCP 服务器,并通过模型上下文协议访问工具。

  1. 先决条件
    1. 安装
      1. 配置
        1. 本地开发
        2. 部署
        3. 连接 URL
        4. 游标配置
        5. 克劳德配置
      2. MCP信息
        1. 故障排除

          Related MCP Servers

          • -
            security
            F
            license
            -
            quality
            This MCP server implementation allows users to manage and expose actions as tools from their Integration App workspace through the Model Context Protocol.
            Last updated -
            10
            14
            JavaScript
          • A
            security
            A
            license
            A
            quality
            A proxy server that unifies multiple MCP servers, enabling seamless tool, prompt, and resource management via the MetaMCP App.
            Last updated -
            625
            88
            TypeScript
            Apache 2.0
          • -
            security
            A
            license
            -
            quality
            A proxy service that connects MCP clients to remote MCP servers, allowing users to use server keys from MCP.so to access remote resources without running their own server.
            Last updated -
            5,062
            2
            TypeScript
            MIT License
            • Apple
          • -
            security
            -
            license
            -
            quality
            Proxy that aggregates multiple MCP servers and presents them as a unified interface, allowing clients to access resources from multiple servers transparently.
            Last updated -
            1
            TypeScript

          View all related MCP servers

          ID: cdg7w5wfqm