Skip to main content
Glama
authn8
by authn8

@authn8/mcp-server

MCP-Server, der KI-Agenten über PAT-Authentifizierung Zugriff auf Authn8-2FA-Codes bietet.

Voraussetzungen

  • Ein Authn8-Konto

  • Ein persönlicher Zugriffstoken (PAT), der im Authn8-Dashboard erstellt wurde

Related MCP server: Access

Schnellstart

npx @authn8/mcp-server

Setzen Sie die Umgebungsvariable AUTHN8_API_KEY auf Ihren PAT-Token.

Docker

docker run -e AUTHN8_API_KEY=pat_xxx ghcr.io/authn8/mcp-server

Konfiguration

Claude Desktop

Fügen Sie Folgendes zu Ihrer Claude-Desktop-Konfigurationsdatei hinzu:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "authn8": {
      "command": "npx",
      "args": ["-y", "@authn8/mcp-server"],
      "env": {
        "AUTHN8_API_KEY": "pat_your_token_here"
      }
    }
  }
}

Claude Code (CLI)

Fügen Sie Folgendes zu Ihrer Claude-Code-Konfigurationsdatei hinzu:

macOS: ~/.claude.json Windows: %USERPROFILE%\.claude.json

{
  "mcpServers": {
    "authn8": {
      "command": "npx",
      "args": ["-y", "@authn8/mcp-server"],
      "env": {
        "AUTHN8_API_KEY": "pat_your_token_here"
      }
    }
  }
}

Cursor

Fügen Sie Folgendes zu Ihren Cursor-MCP-Einstellungen hinzu:

{
  "mcpServers": {
    "authn8": {
      "command": "npx",
      "args": ["-y", "@authn8/mcp-server"],
      "env": {
        "AUTHN8_API_KEY": "pat_your_token_here"
      }
    }
  }
}

Umgebungsvariablen

Variable

Erforderlich

Standard

Beschreibung

AUTHN8_API_KEY

Ja

-

Ihr PAT-Token von Authn8

AUTHN8_API_URL

Nein

https://api.authn8.com

API-Endpunkt-URL

Verfügbare Tools

Alle Tools deklarieren ein Ausgabeschema und geben structuredContent zusammen mit dem Textblock zurück, sodass Clients typisierte Ergebnisse erhalten, ohne JSON aus Text erneut parsen zu müssen.

list_accounts

Gibt alle 2FA-Konten zurück, die für dieses Token zugänglich sind.

Beispielantwort:

{
  "accounts": [
    {
      "id": "924c52a6-4457-4970-a39f-4dc620217683",
      "name": "AWS Production",
      "issuerDomain": "amazon.com"
    }
  ]
}

get_otp

Generiert einen TOTP-Code für ein bestimmtes Konto.

Parameter:

  • account_id (string, optional) - UUID des Kontos

  • account_name (string, optional) - Name oder Aussteller-Domain zum Suchen (case-insensitive Teilabgleich)

Geben Sie entweder account_id oder account_name an. Wenn mehrere Konten mit dem Namen übereinstimmen, gibt das Tool sie in multipleMatches zurück, sodass Sie es mit einer account_id erneut versuchen können.

Beispielantwort:

{
  "name": "AWS Production",
  "code": "483920",
  "length": 6
}

Mehrdeutige Übereinstimmung:

{
  "error": "Multiple accounts match 'aws'. Please be more specific or use account_id.",
  "length": 0,
  "multipleMatches": [
    {
      "id": "924c52a6-4457-4970-a39f-4dc620217683",
      "name": "AWS Production",
      "issuerDomain": "amazon.com"
    }
  ]
}

whoami

Gibt Informationen über das aktuelle Token zurück.

Beispielantwort:

{
  "tokenName": "MCP Server 2",
  "businessName": "Bytecode Solutions",
  "scopedGroups": [
    { "id": "cfeba14a-e990-49e8-b6e5-61d63f7d68c8", "name": "HR" }
  ],
  "expiresAt": "2025-12-25T23:59:59Z",
  "accountCount": 1
}

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Self-hosted credential store and API proxy for AI agents. One Bearer token, all your services. Handles OAuth refresh, encrypted storage, audit logging, and per-agent permissioning.
    71
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Zero-knowledge credential injection for AI agents. Your agent authenticates to websites and APIs without ever seeing a password, TOTP code, or API key.
    6
    1
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to securely perform privileged actions like creating GitHub issues by minting short-lived, single-purpose tokens on demand, with policy enforcement and audit logging.
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/authn8/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server