Files
pallas/pallas/__init__.py
Robert Helewka be71709608 feat(pallas): add opt-in bearer token forwarding to downstream MCP servers
Introduce per-server `forward_inbound_auth` flag that controls whether the
inbound MCP bearer token is propagated to outbound MCP transport calls.
Implemented as a fast-agent monkey-patch auto-installed on package import,
preventing accidental credential leakage to unrelated downstream servers.

Update docs to describe the two bearer token consumers (LLM provider
passthrough and opt-in downstream MCP forwarding) with a config example.
2026-05-03 17:17:50 -04:00

14 lines
285 B
Python

"""
Pallas — FastAgent MCP Bridge
Generic runtime for serving FastAgent agents over StreamableHTTP.
Reads deployment topology from agents.yaml in the working directory.
"""
__version__ = "0.1.0"
from pallas import _fastagent_patch as _fastagent_patch
_fastagent_patch.install()