npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@iflow-mcp/authenticator-mcp

v2.1.2

Published

Model Context Protocol server for Authenticator App

Downloads

199

Readme

一个安全的 MCP(模型上下文协议)服务器,使 AI 代理能够与 Authenticator App 进行交互。它提供对 2FA 验证码和密码的无缝访问,使 AI 代理能够协助完成自动登录流程,同时确保安全性。这个工具架起了 AI 助手与安全认证之间的桥梁,让你更轻松地在不同平台和网站上管理凭据。

工作原理

  1. 打开你所用的 AI 代理集成聊天界面(例如 Cursor 的代理模式)。
  2. 请求 AI 代理获取你在指定网站和账户上的 2FA 验证码或密码。
  3. AI 代理将安全地获取这些凭据,并可使用它们自动完成登录流程。

此 MCP 服务器专为配合 Authenticator App · 2FA 使用而设计。

Demo video

快速开始

许多 AI 客户端使用配置文件来管理 MCP 服务器。

你可以在配置文件中添加如下内容来配置 authenticator-mcp 工具。

注意:使用该服务器前,你需要创建一个 Authenticator App 的 访问令牌。如何创建访问令牌的说明请见 此处

macOS / Linux

{
  "mcpServers": {
    "Authenticator App MCP": {
      "command": "npx",
      "args": ["-y", "authenticator-mcp", "--access-token=YOUR-KEY"]
    }
  }
}

Windows

{
  "mcpServers": {
    "Authenticator App MCP": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "authenticator-mcp", "--access-token=YOUR-KEY"]
    }
  }
}

或者你也可以在 env 字段中设置 AUTHENTICATOR_ACCESS_TOKEN

安装 Authenticator App · 2FA 桌面版

      

创建访问令牌

  1. 启动 Authenticator App · 2FA 桌面版。
  2. 进入 设置,找到 MCP 服务器 部分。
  3. 将 MCP 服务器功能切换为 开启,然后生成访问令牌。

请注意,访问令牌仅显示一次。请务必立即复制,并将其添加至你的 MCP 客户端配置中。