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.
14 lines
285 B
Python
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()
|
|
|