Back to MCP directory
publicPublicdnsLocal runtime

sipgateio-mcp

一个非官方的sipgate API集成项目,提供MCP服务器功能,使AI助手能够通过sipgate服务发送短信、拨打电话和管理账户。

article

README

🚀 Sipgate API MCP 服务

本项目提供了访问sipgate API的服务,能让AI助手与sipgate服务进行交互,涵盖短信、通话以及账户管理等功能。不过需要注意的是,这是一个非官方的社区集成项目,和sipgate GmbH并无关联,仅使用了sipgate的公开API。

🚀 快速开始

在使用本服务前,你需要完成一些准备工作,具体如下:

  1. 拥有一个sipgate账户,你可以前往这里进行注册。
  2. 获取来自sipgate的个人访问令牌凭证,步骤如下:
    • 登录到你的sipgate账户。
    • 导航至“设置” > “个人访问令牌”。
    • 创建一个新的令牌。
    • 记下令牌ID和令牌。

📦 安装指南

Claude

将以下内容添加到claude_desktop_config.json文件中:

{
  "mcpServers": {
    "sipgate-api": {
      "command": "npx",
      "args": [
        "-y",
        "sipgateio-mcp"
      ],
      "env": {
        "SIPGATE_TOKEN_ID": "your-token-id",
        "SIPGATE_TOKEN": "your-token"
      }
    }
  }
}

要找到claude_desktop_config.json文件,你可以打开Claude应用程序,然后转到设置 > 高级 > 打开配置文件。

VS Code

在VS Code中使用以下命令安装sipgate API MCP服务器:

# 对于 VS Code
code --add-mcp '{"name":"sipgate-api","command":"npx","args":["-y","sipgateio-mcp"],"env":{"SIPGATE_TOKEN_ID":"your-token-id","SIPGATE_TOKEN":"your-token"}}'

# 对于 VS Code Insiders
code-insiders --add-mcp '{"name":"sipgate-api","command":"npx","args":["-y","sipgateio-mcp"],"env":{"SIPGATE_TOKEN_ID":"your-token-id","SIPGATE_TOKEN":"your-token"}}'

Cursor

要在Cursor IDE中添加此服务器,可按以下步骤操作:

  1. 转到“设置”。
  2. 选择“MCP服务器”。
  3. 点击“添加”并粘贴以下内容:
{
  "name": "sipgate-api",
  "command": "npx",
  "args": [
    "-y",
    "sipgateio-mcp"
  ],
  "env": {
    "SIPGATE_TOKEN_ID": "your-token-id",
    "SIPGATE_TOKEN": "your-token"
  }
}

其他环境

复制以下内容到config.json文件中:

{
  "servers": [
    {
      "name": "sipgate-api",
      "command": "npx",
      "args": [
        "-y",
        "sipgateio-mcp"
      ],
      "env": {
        "SIPGATE_TOKEN_ID": "your-token-id",
        "SIPGATE_TOKEN": "your-token"
      }
    }
  ]
}

⚠️ 重要提示

这是一个非官方集成项目,与sipgate GmbH无任何关联。请谨慎使用,并遵循sipgate的相关使用条款。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client