AgentHubAgentHub

looply

MCP ServerMCP Registry官方收录

io.github.xie38388/looply · v1.0.1

Looply AI call center MCP Server - manage calls, leads, contacts, and analytics.

概览

looply 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "looply": {
      "command": "npx",
      "args": [
        "-y",
        "looply-mcp-server"
      ],
      "env": {
        "LOOPLY_API_KEY": "<LOOPLY_API_KEY>",
        "LOOPLY_BASE_URL": "<LOOPLY_BASE_URL>",
        "DATABASE_URL": "<DATABASE_URL>"
      }
    }
  }
}

环境变量

LOOPLY_API_KEY必填secret

Your Looply API key for authentication. Generate one from Settings → API Keys in your Looply dashboard.

LOOPLY_BASE_URL必填

Your Looply instance URL (e.g., https://your-app.manus.space)

DATABASE_URL必填secret

MySQL database connection string for direct database access

相关资源

统一 Manifest

{
  "id": "io.github.xie38388/looply",
  "type": "mcp-server",
  "version": "1.0.1",
  "displayName": "looply",
  "description": "Looply AI call center MCP Server - manage calls, leads, contacts, and analytics.",
  "repository": {
    "url": "https://github.com/xie38388/looply-clone",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "looply-mcp-server",
        "version": "1.0.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "LOOPLY_API_KEY",
            "description": "Your Looply API key for authentication. Generate one from Settings → API Keys in your Looply dashboard.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "LOOPLY_BASE_URL",
            "description": "Your Looply instance URL (e.g., https://your-app.manus.space)",
            "isRequired": true
          },
          {
            "name": "DATABASE_URL",
            "description": "MySQL database connection string for direct database access",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.xie38388/looply",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.xie38388%2Flooply/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
looply — MCP Server 安装与配置 · AgentHub