- Add MCP code executor server for Python/TypeScript/JavaScript - Configure Runtime API in router with MCP integration - Add mock Runtime service for development - Enable tools/functions in chat configuration - Test all services working successfully - Add runtime execution models to router config - Create code executor with sandbox support - Update compose files with runtime service - Add health checks for all services Code execution now available through chat interface via MCP tools
12 lines
260 B
TOML
12 lines
260 B
TOML
[project]
|
|
name = "hanzo-mcp-code-executor"
|
|
version = "0.1.0"
|
|
description = "Hanzo Code Executor MCP Server"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp>=0.1.0",
|
|
"httpx>=0.27.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
hanzo-code-executor = "hanzo_code_executor:main" |