fast-agent auto-activates its shell execute tool on any agent with skills configured, and Context.no_shell — the only opt-out — has no constructor or config knob. Add install_no_shell(), a wrapper on fast_agent.context.initialize_context that stamps no_shell=True on every context, installed from server.main() when the deployment's agents.yaml sets a truthy top-level no_shell: key. Skill loading via read_skill is unaffected. Default behaviour unchanged for deployments without the key. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
30 lines
600 B
TOML
30 lines
600 B
TOML
[project]
|
|
name = "pallas-mcp"
|
|
version = "0.5.2"
|
|
description = "FastAgent MCP Bridge — generic runtime for serving FastAgent agents over StreamableHTTP"
|
|
requires-python = ">=3.13.5"
|
|
dependencies = [
|
|
"fast-agent-mcp==0.7.15",
|
|
"httpx",
|
|
"prometheus-client",
|
|
"pyyaml",
|
|
"starlette",
|
|
"uvicorn",
|
|
]
|
|
|
|
[project.scripts]
|
|
pallas = "pallas.server:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["pallas"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|