We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wolffcatskyy/homeops-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
[tool.poetry]
name = "homeops-mcp"
version = "0.1.0"
description = "MCP server for home infrastructure management"
authors = ["wolffcatskyy"]
license = "MIT"
readme = "README.md"
packages = [{include = "homeops_mcp"}]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.115.0"
uvicorn = {extras = ["standard"], version = "^0.34.0"}
httpx = "^0.28.0"
pydantic = "^2.10.0"
pydantic-settings = "^2.7.0"
python-dotenv = "^1.0.0"
structlog = "^24.0.0"
prometheus-client = "^0.21.0"
mcp = ">=1.2.0,<2"
[tool.poetry.scripts]
homeops-mcp = "homeops_mcp.main:_run_stdio"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-asyncio = "^0.25.0"
ruff = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 100