Add v1.1.0 with progress streaming, timeouts, and git validation.

Surface Cursor run progress to stderr and response payloads, enforce
CURSOR_TIMEOUT_SECONDS, validate git repos before delegate, and fix
resume session cwd persistence. Includes docs, tests, and packaging.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-19 08:08:14 +03:00
commit 1d71b3f822
17 changed files with 1096 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cursor-mcp"
version = "1.1.0"
description = "MCP server for delegating coding tasks to Cursor via the Cursor SDK"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "cursor-mcp" }]
keywords = ["mcp", "cursor", "hermes", "coding"]
dependencies = [
"mcp>=1.0.0",
"cursor-sdk>=0.1.7",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
]
[project.scripts]
cursor-mcp = "cursor_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/cursor_mcp"]