一个基于FastMCP的验证码生成工具
Project description
MCP 验证码生成工具
项目概述
这是一个基于FastMCP构建的验证码生成工具包,提供多种类型的验证码生成功能,可以轻松集成到各种Python项目中。
功能特性
- 生成纯数字验证码
- 生成纯字母验证码(包含大小写)
- 生成字母和数字混合验证码
- 支持自定义验证码长度
安装方法
从PyPI安装(推荐)
# 使用pip安装(清华源)
pip install mcp-verification-code -i https://pypi.tuna.tsinghua.edu.cn/simple
# 或使用官方源
pip install mcp-verification-code
从源码安装
# 克隆代码库
git clone https://github.com/yourusername/mcp-verification-code.git
cd mcp-verification-code
# 安装依赖
pip install -e .
使用方法
作为MCP服务器
# 启动MCP服务器
from mcp_verification_code.verification_code import run_server
run_server()
直接在代码中使用
# 导入验证码生成函数
from mcp_verification_code import (
generate_numeric_verification_code,
generate_alphabetic_verification_code,
generate_mixed_verification_code
)
# 生成6位数字验证码
num_code = generate_numeric_verification_code()
print(f"数字验证码: {num_code}")
# 生成8位字母验证码
alpha_code = generate_alphabetic_verification_code(length=8)
print(f"字母验证码: {alpha_code}")
# 生成10位混合验证码
mixed_code = generate_mixed_verification_code(length=10)
print(f"混合验证码: {mixed_code}")
开发指南
安装开发依赖
pip install -e ".[dev]"
构建并上传到PyPI
# 使用提供的脚本
python build_and_upload.py
许可证
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_verification_code-0.1.2.tar.gz.
File metadata
- Download URL: mcp_verification_code-0.1.2.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ceaea6bb1204bbc4affffcf314830d01791b85e75ed7d36543fe76fa85414d3d
|
|
| MD5 |
1218e7fed805b3533a692c543466a592
|
|
| BLAKE2b-256 |
7569683d38d0b206e4dd922a52287d89777ad1ece25809619d84c11523de070f
|
File details
Details for the file mcp_verification_code-0.1.2-py3-none-any.whl.
File metadata
- Download URL: mcp_verification_code-0.1.2-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
996aeeeed399aeb6d50512523f4721a99b2412d6bd6f536ae149ec1291d39c13
|
|
| MD5 |
edebbd9d481cc745c021dd676a9ff7e7
|
|
| BLAKE2b-256 |
da0ea8df12c9d838cf7044f47a2863d7c859bbf72c29e70640e9bb570b4b95fd
|