codeflash-agent/packages/codeflash-mcp/pyproject.toml
HeshamHM28 6274dca2d5 feat: enhance Java optimization flow with extended sessions, Pareto tracking, and MCP visibility
Add iterative optimization capabilities inspired by Kimi K2.6: thread topology & spin-wait
strategies, allocation profiling, cross-function scope, behavioral equivalence verification,
Pareto frontier tracking with chart generation, extended session protocol (10-15+ hours),
session interruption detection/recovery via hooks, and MCP endpoint visibility so users
can follow the profiling pipeline.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-28 16:17:45 +03:00

18 lines
341 B
TOML

[project]
name = "codeflash-mcp"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"codeflash-core",
"mcp[cli]>=1.0.0",
]
[project.scripts]
codeflash-mcp = "codeflash_mcp.server:main"
[build-system]
requires = ["uv_build>=0.7.2,<0.8"]
build-backend = "uv_build"
[tool.uv.sources]
codeflash-core = { workspace = true }