[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "respcode-mcp"
version = "2.1.2"
description = "MCP Server for RespCode - Multi-Architecture Code Execution"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Noor", email = "support@respcode.com"}
]
keywords = ["mcp", "code-execution", "ai", "claude", "anthropic"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.25.0"
]
[project.urls]
Homepage = "https://respcode.com"
Documentation = "https://docs.respcode.com"
Repository = "https://github.com/RespCodeAI/respcode-mcp"
[project.scripts]
respcode-mcp = "respcode_mcp:run"
[tool.hatch.build.targets.wheel]
packages = ["src/respcode_mcp"]
[tool.hatch.build]
exclude = [
"venv",
"*.pyc",
"__pycache__",
".git",
"dist",
"build",
"*.egg-info"
]