AgentHubAgentHub

Agentline

MCP ServerMCP Registry官方收录

io.github.jgottlieb84/agentline-mcp · v0.1.1

Phone numbers, SMS, 2FA capture, voice calls, and email for AI agents.

概览

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

安装

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

{
  "mcpServers": {
    "agentline-mcp": {
      "command": "uvx",
      "args": [
        "agentline-mcp"
      ],
      "env": {
        "AGENTLINE_API_KEY": "<AGENTLINE_API_KEY>"
      }
    }
  }
}

环境变量

AGENTLINE_API_KEY必填secret

Agentline API key. Get one at https://www.agentline.co. Starts with ag_live_ or ag_test_.

AGENTLINE_BASE_URL可选

Override the Agentline API base URL. Defaults to https://api.agentline.dev. Only needed for self-hosted or staging deployments.

相关资源

统一 Manifest

{
  "id": "io.github.jgottlieb84/agentline-mcp",
  "type": "mcp-server",
  "version": "0.1.1",
  "displayName": "Agentline",
  "description": "Phone numbers, SMS, 2FA capture, voice calls, and email for AI agents.",
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "agentline-mcp",
        "version": "0.1.1",
        "runtimeHint": "uvx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AGENTLINE_API_KEY",
            "description": "Agentline API key. Get one at https://www.agentline.co. Starts with ag_live_ or ag_test_.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AGENTLINE_BASE_URL",
            "description": "Override the Agentline API base URL. Defaults to https://api.agentline.dev. Only needed for self-hosted or staging deployments."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.jgottlieb84/agentline-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.jgottlieb84%2Fagentline-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Agentline — MCP Server 安装与配置 · AgentHub