[project]
name = "credential-manager-mcp"
version = "1.0.2"
description = "A FastMCP server for securely managing API credentials locally"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastmcp>=2.8.0",
"pydantic>=2.11.0",
]
authors = [
{name = "William Zhang", email = "mclamee@yeah.net"}
]
license = {text = "MIT"}
keywords = ["mcp", "credentials", "api", "fastmcp", "model-context-protocol"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security",
"Topic :: System :: Systems Administration",
]
[project.urls]
Homepage = "https://github.com/mclamee/credential-manager-mcp"
Repository = "https://github.com/mclamee/credential-manager-mcp"
Issues = "https://github.com/mclamee/credential-manager-mcp/issues"
[project.scripts]
credential-manager-mcp = "credential_manager_mcp:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["credential_manager_mcp"]
[tool.hatch.build]
exclude = [
"test/",
"docs/",
".*",
"credentials.json",
"*.py[cod]",
"__pycache__/",
"credential_manager.py", # Keep the standalone file out of the package
"run_tests.py",
"example_usage.py",
]
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.21.0",
]
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "auto"