Authn8 MCP Server
@authn8/mcp-server
MCP-сервер, который предоставляет AI-агентам доступ к 2FA-кодам Authn8 через PAT-аутентификацию.
Предварительные требования
Аккаунт Authn8
Персональный токен доступа (PAT), созданный в панели управления Authn8
Related MCP server: Access
Быстрый старт
npx @authn8/mcp-serverУстановите переменную окружения AUTHN8_API_KEY в значение вашего PAT-токена.
Docker
docker run -e AUTHN8_API_KEY=pat_xxx ghcr.io/authn8/mcp-serverКонфигурация
Claude Desktop
Добавьте в файл конфигурации Claude Desktop:
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)
Добавьте в файл конфигурации Claude Code:
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
Добавьте в настройки MCP в Cursor:
{
"mcpServers": {
"authn8": {
"command": "npx",
"args": ["-y", "@authn8/mcp-server"],
"env": {
"AUTHN8_API_KEY": "pat_your_token_here"
}
}
}
}Переменные окружения
Переменная | Обязательная | По умолчанию | Описание |
| Да | - | Ваш PAT-токен из Authn8 |
| Нет |
| URL конечной точки API |
Доступные инструменты
Все инструменты объявляют схему вывода и возвращают structuredContent вместе с текстовым блоком, поэтому клиенты получают типизированные результаты без повторного разбора JSON из текста.
list_accounts
Возвращает все 2FA-аккаунты, доступные для этого токена.
Пример ответа:
{
"accounts": [
{
"id": "924c52a6-4457-4970-a39f-4dc620217683",
"name": "AWS Production",
"issuerDomain": "amazon.com"
}
]
}get_otp
Генерирует TOTP-код для конкретного аккаунта.
Параметры:
account_id(string, необязательный) - UUID аккаунтаaccount_name(string, необязательный) - Имя или домен эмитента для поиска (частичное совпадение без учета регистра)
Укажите либо account_id, либо account_name. Если несколько аккаунтов соответствуют имени, инструмент возвращает их в multipleMatches, чтобы вы могли повторить попытку с account_id.
Пример ответа:
{
"name": "AWS Production",
"code": "483920",
"length": 6
}Неоднозначное совпадение:
{
"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
Возвращает информацию о текущем токене.
Пример ответа:
{
"tokenName": "MCP Server 2",
"businessName": "Bytecode Solutions",
"scopedGroups": [
{ "id": "cfeba14a-e990-49e8-b6e5-61d63f7d68c8", "name": "HR" }
],
"expiresAt": "2025-12-25T23:59:59Z",
"accountCount": 1
}Ссылки
Authn8 - Создайте аккаунт и управляйте 2FA-токенами
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.
This server cannot be installed
Maintenance
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
Secrets for developers and agents—secure context and workflows without exposing secret values.
Verified, pay-per-use API tools for AI agents through one authenticated connection.
Give your AI hands. Identity, credential vault, and API gateway for autonomous agents.
- FullmaktOAuthai.fullmakt
Credential broker for AI agents: scoped, revocable API access with policy enforcement and audit.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceGenerates time-based one-time password (TOTP) 2FA codes for configured accounts, enabling Claude to automate workflows requiring two-factor authentication.-
- AlicenseNot gradedqualityCmaintenanceSelf-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.71MIT
- AlicenseNot gradedqualityDmaintenanceZero-knowledge credential injection for AI agents. Your agent authenticates to websites and APIs without ever seeing a password, TOTP code, or API key.61MIT
- AlicenseNot gradedqualityCmaintenanceEnables 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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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