返回市场
麦普

麦普

作者:superfaceai4 星标更新:2025-04-11

项目介绍

网站 | 文档 | X (推特) | 支持

<img src="https://github.com/superfaceai/mcp_server/raw/main/docs/superface.png" alt="Superface" width="60" />

Superface MCP 服务器

通过模型上下文协议使用 Superface 工具。

配置

添加工具及获取 API 密钥

  1. 转到 Superface 控制台
  2. 选择并添加您想要与 MCP 服务器一起使用的工具
  3. 在控制台中复制您的 API 密钥

您需要此 API 密钥来配置 MCP 服务器。

与 Claude Desktop 的使用

  1. 打开 Claude Desktop
  2. 前往设置(点击您的头像或按 <kbd></kbd> + <kbd>,</kbd>
  3. 打开“开发者”标签页
  4. 点击“编辑配置”
  5. 打开 claude_desktop_config.json 文件
  6. 添加以下配置:

NPX

{
  "mcpServers": {
    "superface": {
      "command": "npx",
      "args": [
        "-y",
        "@superfaceai/mcp"
      ],
      "env": {
        "SUPERFACE_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}

Docker

{
  "mcpServers": {
    "superface": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "SUPERFACE_API_KEY",
        "mcp/superface"
      ],
      "env": {
        "SUPERFACE_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}

构建

Docker 构建:

docker build -t mcp/superface .

许可证

本项目采用 MIT 许可证。详情见 LICENSE 文件。