We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/m-umemura-pitdesign/pit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
[project]
name = "mcp-parking-server"
version = "1.0.0"
description = "駐車場管理システム用 MCP サーバー(読み取り専用)"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"aiomysql>=0.2.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[project.scripts]
mcp-parking-server = "src.server:main"