OTP MCP Server
Generates secure One-Time Passwords (OTP) using TOTP and HOTP algorithms.
OTP-MCP-Server
Model Context Protocol (MCP) server that provides OTP (One-Time Password) generation
A Model Context Protocol (MCP) server built with FastMCP that provides secure OTP (One-Time Password) generation. Supports TOTP (Time-based) and HOTP (HMAC-based) algorithms and multiple transport options including stdio, SSE, and HTTP Stream for seamless integration with AI assistants and applications.
Quick Start
Installation
# Use uvx for isolated execution
uvx otp-mcp-server
# Or install from PyPI
pip install otp-mcp-server
Basic Usage
# Run with STDIO (default, for Claude Desktop)
otp-mcp-server
# Run with HTTP Stream transport
otp-mcp-server --http-stream --host 127.0.0.1 --port 8000
# Run with SSE transport
otp-mcp-server --sse --host 127.0.0.1 --port 8000
Using with Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"otp": {
"command": "uvx",
"args": ["otp-mcp-server"]
}
}
}
Configuration
You can configure the server using command-line arguments or environment variables.
Environment Variable | Description |
---|---|
OTP_MCP_SERVER_DB | Path to the tokens database file |
OTP_MCP_SERVER_HOST | Host to bind the server to |
OTP_MCP_SERVER_PORT | Port to bind the server to |
OTP_MCP_SERVER_TRANSPORT | Transport protocol to use |
OTP_MCP_SERVER_PATH | Path for HTTP transport |
OTP_MCP_SERVER_LOG_LEVEL | Logging level |
Related Servers
GameCode MCP2
A Model Context Protocol (MCP) server for tool integration, configured using a tools.yaml file.
Kubernetes MCP Server
Inspect and debug Kubernetes clusters with read-only access to resources, CRDs, and pod logs.
MockMCP
Create mock MCP servers instantly for developing and testing agentic AI workflows.
fal.ai Recraft v3
Advanced text-to-image generation using the fal.ai Recraft v3 API.
My MCP Server
A remote MCP server example deployable on Cloudflare Workers without authentication.
Futarchy MCP
A server for interacting with the Futarchy protocol on the Solana blockchain.
Imagen3-MCP
Generate images using Google's Imagen 3.0 model via the Gemini API.
Agentic Tools MCP Companion
A VS Code extension with a GUI for the agentic-tools-mcp server, enhancing task and memory management.
Python Local
An interactive Python REPL environment with persistent session history.
Omilia MCP Tools
A set of tools for managing miniapps, orchestrator apps, and dialog logs on the Omilia Cloud Platform (OCP).